1// create a folder in your root directory /assets/fonts/
2// paste the custom fonts you want used in that folder
3// create a file in the root called react-native.config.js
4// Then add the following:
5
6module.exports = {
7 project: {
8 ios: {},
9 android: {},
10 },
11 assets: ['./assets/fonts'],
12};
13
14// then run
15
16react-native link