RN- 全局关闭字体放大缩小功能

2019-06-02  本文已影响0人  精神病患者link常
import {Text}from "react-native";
import React from 'react';

// 全局关闭字体放大缩小功能,可以写在程序入口处
let textRender = Text.prototype.render;

Text.prototype.render = function () {
    let originText = textRender.apply(this, arguments);
    return React.cloneElement(originText, {allowFontScaling: false ,style: [{includeFontPadding: false, textAlignVertical: 'center'},
            originText.props.style]}, originText.props.children)
};

上一篇 下一篇

猜你喜欢

热点阅读