为什么不出现矢量图标?
Why does the vector-icon not appear?
我在主页的头部有一个图标,但是图标没有出现,只有一个白色的X,我该怎么办?
function HomePage({navigation}) {
useEffect(() => {
navigation.setOptions({
headerRight: () => (
<TouchableWithoutFeedback onPress={() => navigation.navigate('Menu')}>
<Icon name="accessibility" color="white" />
</TouchableWithoutFeedback>
),
headerStyle: {
backgroundColor: "black"
}
});
}, []);
尝试添加 /app/build.gradle
申请自:"../../node_modules/react-native-vector-icons/fonts.gradle"
然后重建应用程序并从 phone 卸载应用程序并重新安装。
抱歉,之前的回答是针对 expo
位用户的。
我在主页的头部有一个图标,但是图标没有出现,只有一个白色的X,我该怎么办?
function HomePage({navigation}) {
useEffect(() => {
navigation.setOptions({
headerRight: () => (
<TouchableWithoutFeedback onPress={() => navigation.navigate('Menu')}>
<Icon name="accessibility" color="white" />
</TouchableWithoutFeedback>
),
headerStyle: {
backgroundColor: "black"
}
});
}, []);
尝试添加 /app/build.gradle
申请自:"../../node_modules/react-native-vector-icons/fonts.gradle"
然后重建应用程序并从 phone 卸载应用程序并重新安装。
抱歉,之前的回答是针对 expo
位用户的。