How to set default font family in React Native?

后端 未结 10 986
鱼传尺愫
鱼传尺愫 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:07

    The recommended way is to create your own component, such as MyAppText. MyAppText would be a simple component that renders a Text component using your universal style and can pass through other props, etc.

    https://facebook.github.io/react-native/docs/text.html#limited-style-inheritance

提交回复
热议问题