Make your expo apps start faster by loading fonts at build time
expo-font
load fonts at runtime. This increases the startup time
expo install with-expo-fonts
Add to your plugins on app.json
{
"name": "my app",
"plugins": [[
"with-expo-fonts",
{
path: "./assets/fonts",
},
]]
}
At the root of your project there is an assets
folder. Create a fonts
folder inside it, and place your fonts.
Rebuild your app and enjoy :)