react native typescript use custom font
// Create file
React-native cli project or with --template typecript
react-native.config.js
======ADD==========
module.exports = {
assets: ['./src/assets/fonts'],
}
=======run===========
react-native link
after that check your info.plist
must font must be there to use in application
<key>UIAppFonts</key>
<array>
<string>Comfortaa-Bold.ttf</string>
<string>Comfortaa-Light.ttf</string>
<string>Comfortaa-Medium.ttf</string>
<string>Comfortaa-Regular.ttf</string>
<string>Comfortaa-SemiBold.ttf</string>
</array>
and for andrid like all the files should be like this
Your_app_name /android/app/src/main/assets/fonts
aLL of you fonts file comes here