我试图在react native expo项目中导入名为raleway的自定义谷歌字体。即使在运行项目时遵循expo字体文档,我也会收到错误字体Family 'raleway'不是系统字体,并且尚未通过Font. loadAsync加载。
以下是我如何导入App.js文件中的字体-
import { useFonts } from 'expo-font';
let customFonts={
'raleway':require('./assets/Fonts/Raleway-Regular.ttf')
}
const [isLoaded]=useFonts(customFonts)
字符串
我在另一个文件GoogleMapView.js文件中使用它-
text:{
fontWeight:"bold",
fontSize:16,
marginBottom:10,
fontFamily:"raleway"
}
型
1条答案
按热度按时间jgwigjjp1#
像这样在App.js上导入字体
字符串