Is there an equivalent to this CSS in React Native, so that the app uses the same font everywhere ?
body {
font-family: \'Open Sans\';
}
That works for me: Add Custom Font in React Native
download your fonts and place them in assets/fonts folder, add this line in package.json
"rnpm": {
"assets": ["assets/fonts/Sarpanch"]}
then open terminal and run this command: react-native link
Now your are good to go. For more detailed step. visit the link above mentioned