Hey guys ,
i have a issue with react native version 0.72.7 ; My fonts are showing correctly on ios but i don't get same result in android !
first i make a react-native.config.js file and put :
module.exports = { project: { ios: {}, android: {}, }, assets: ['./fonts'], };
and put my ttf font in the /fonts directory then i use npx react-native-asset command to link it to my project .
it works successfully in IOS but i don't get any result in android !
what should i do?
Hey guys , i have a issue with react native version 0.72.7 ; My fonts are showing correctly on ios but i don't get same result in android ! first i make a
react-native.config.js
file and put :module.exports = { project: { ios: {}, android: {}, }, assets: ['./fonts'], };
and put my ttf font in the/fonts
directory then i usenpx react-native-asset
command to link it to my project . it works successfully in IOS but i don't get any result in android ! what should i do?