React Native - Custom Fonts - Episode 8

preview_player
Показать описание
This is the eighth episode in the Learning React Native Series.
This tutorial focuses on how you can download, import and use custom fonts inside your React Native Applications.

Рекомендации по теме
Комментарии
Автор

thanks for sharing this knowledge Steve. One question, import the fonts from the file and not from the url is an personal choice or an better practice in react native? thanks

arturluisoliveira
Автор

The { Font } is not an expo native module anymore,
//It can be used
import * as Font from "expo-font"
//instead of
import { Font } from "expo"

arturluisoliveira