I sometimes have the problem of 'file not found' with @expo-google-fonts, so the font does not load:file:///var/mobile/Containers/Data/Application/9F59C707-9AE3-427A-BCB2-4A34C581D208/Library/Caches/ExponentAsset-8b6af8e5e8324edfd77af8b3b35d7f9c.ttf
And this path can change.
This error occurs about every 10 times after I build the app.
The code:
import { useFonts, Poppins_500Medium } from '@expo-google-fonts/poppins';function App(){ const [FontsLoaded, error] = useFonts({'PoppinsMedium': Poppins_500Medium, });...}
Thank you for solving this.