I try using custom font in react native app ,
create assets/fonts/ folder in root of project and put fonts in there.
create react-native.config.js
and write ,
module.exports = {
project: {
ios: {},
android: {},
},
assets: ['./assets/fonts/'],
};
and try react-native link
it is working in android but not working in ios
react-native: 0.60.5
npm: 6.11.0
node: 10.16.0