我使用testflight在真实设备上测试我的应用程序,但是图标显示为问号,但是当我使用expo app(在同一设备上)测试应用程序时,它可以正常工作。在模拟器和android真实设备上也可以正常工作。
import { FontAwesome, Ionicons, AntDesign, Entypo, Feather, Foundation } from "@expo/vector-icons";
import { Icon, Button, List, ListItem } from 'native-base'
进行测试目的我使用所有这些图标来检查哪个图标有效,但所有图标都显示为问号
<List>
<ListItem>
<Icon name="cart" />
</ListItem>
<ListItem>
<Ionicons name="ios-home" />
</ListItem>
<ListItem>
<AntDesign name="stepforward" />
</ListItem>
<ListItem>
<Foundation name="alert" />
</ListItem>
<ListItem>
<Entypo name="credit" />
</ListItem>
<ListItem>
<Feather name="shuffle" />
</ListItem>
</List>