react-native-vector-icons/react-native-elements 不工作
react-native-vector-icons/ react-native-elements not working
我已经尝试了所有方法,但无法解决此错误。请帮忙替换这个 box instead of icon
import { Icon } from 'react-native-elements'
<Icon name="glass" ></Icon>
你可以这样试试:
import FontAwesome from "react-native-vector-icons/FontAwesome";
...
<FontAwesome
name={"glass"}
size={30}
color="#000000"
/>
如果你想使用 react-native-elements 你应该尝试将它与 props type 一起使用,像这样:
<Icon
name='glass'
type='font-awesome'
onPress={() => console.log('hello')}
/>
如果仍然没有显示图标,您必须尝试这个:
react-native link
如前所述
我已经尝试了所有方法,但无法解决此错误。请帮忙替换这个 box instead of icon
import { Icon } from 'react-native-elements'
<Icon name="glass" ></Icon>
你可以这样试试:
import FontAwesome from "react-native-vector-icons/FontAwesome";
...
<FontAwesome
name={"glass"}
size={30}
color="#000000"
/>
如果你想使用 react-native-elements 你应该尝试将它与 props type 一起使用,像这样:
<Icon
name='glass'
type='font-awesome'
onPress={() => console.log('hello')}
/>
如果仍然没有显示图标,您必须尝试这个:
react-native link
如前所述