美文网首页
RN- 全局关闭字体放大缩小功能

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

作者: 精神病患者link常 | 来源:发表于2019-06-02 19:04 被阅读0次
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)
};

相关文章

网友评论

      本文标题:RN- 全局关闭字体放大缩小功能

      本文链接:https://www.haomeiwen.com/subject/xbxfxctx.html