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)
};
网友评论