↧
Answer by Oleg for React Native importing fonts with async...
If you want to use Functional Component with hooks, try like this: add to imports: import { useState, useEffect } from 'react'; and const Home = () => { const [fontLoaded, setFontLoaded] =...
View ArticleReact Native importing fonts with async componentDidMount() expected =>
I am trying to import a font for a title of a project, and I am loading the font as such: import * as Font from 'expo-font' const Home = () => { return( this.state = { fontLoaded: false } async...
View Article