How to set default font family in React Native?

后端 未结 10 1016
鱼传尺愫
鱼传尺愫 2020-11-29 00:25

Is there an equivalent to this CSS in React Native, so that the app uses the same font everywhere ?

body {
  font-family: \'Open Sans\';
}

10条回答
  •  一个人的身影
    2020-11-29 01:11

    With React-Native 0.56, the above method of changing Text.prototype.render does not work anymore, so you have to use your own component, which can be done in one line!

    MyText.js

    export default props => {props.children}
    

    AnotherComponent.js

    import Text from './MyText';
    
    ...
    This will show in default font.
    ...
    

提交回复
热议问题