react native踩坑——Unrecognized font family 'Material Icons'
"react": "16.9.0","react-native": "0.61.5",在info.plist插入以下代码<key>UIAppFonts</key><array><string>AntDesign.ttf</string><string>Entypo.ttf</string>...
·
"react": "16.9.0",
"react-native": "0.61.5",
在使用react-native-vector-icons遇到的错误
在info.plist插入以下代码
<key>UIAppFonts</key>
<array>
<string>AntDesign.ttf</string>
<string>Entypo.ttf</string>
<string>EvilIcons.ttf</string>
<string>Feather.ttf</string>
<string>FontAwesome.ttf</string>
<string>FontAwesome5_Brands.ttf</string>
<string>FontAwesome5_Regular.ttf</string>
<string>FontAwesome5_Solid.ttf</string>
<string>Foundation.ttf</string>
<string>Ionicons.ttf</string>
<string>MaterialIcons.ttf</string>
<string>MaterialCommunityIcons.ttf</string>
<string>SimpleLineIcons.ttf</string>
<string>Octicons.ttf</string>
<string>Zocial.ttf</string>
</array>
更多推荐


所有评论(0)