项目不想让App字体随着手机字体的变化而变化
从官网上看无论是Text还是TextInput属性都有一个共同的属性allowFontScaling默认为true,每个都设置太麻烦了,只需在index.js文件如下操作
import './config'
config.js
import { Text, TextInput } from 'react-native'
//Font setting will not automatically adjust
if (!Text.defaultProps) Text.defaultProps = {};
if (!TextInput.defaultProps) TextInput.defaultProps = {};
Text.defaultProps.allowFontScaling = false
TextInput.defaultProps.allowFontScaling = false
网友评论