美文网首页
React Native 设置项目字体不随手机字体变化

React Native 设置项目字体不随手机字体变化

作者: 学生黄哲 | 来源:发表于2020-06-24 15:02 被阅读0次

    项目不想让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
    

    相关文章

      网友评论

          本文标题:React Native 设置项目字体不随手机字体变化

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