Is there an equivalent to this CSS in React Native, so that the app uses the same font everywhere ?
body {
font-family: \'Open Sans\';
}
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.
...