步骤2。更新
开发者告诉我只有Regular 400和Bold 700可以实现。有人能证实一下吗?谢谢!
这是可能的。
步骤1。安装字体
最快的方法是使用expo-font
和@expo-google-fonts/inter
https://docs.expo.dev/guides/using-custom-fonts/
但是在实际设备上要仔细检查,因为有时会有bug,比如著名的最后两个字符被修剪
步骤2。更新app-mapping-theme.json
更新你的ApplicationProvider
customMapping
道具
// app-mapping-theme.json
{
"strict": {
"text-font-family": "roboto"
}
}
我将文件导入到我的App.js
上,像这样
import { default as mapping } from "~/constants/app-mapping-theme.json";