反应本机矢量图标显示问号

时间:2018-09-25 17:20:37

标签: react-native font-awesome vector-icons

我正在使用React Native vector icons

import Icon from 'react-native-vector-icons/FontAwesome';

从那里我正在使用两个图标

const Home = (<Icon name="bitcoin" size={30} color="black" />)
const News = (<Icon name="news" size={30} color="black" />)

在退货中,我正在这样做

return (
            <View styles={headerContainer}> 
              {News}
              {Home}
            </View>

现在,事情就是这样。由于某种原因,Home碰巧上班了,但新闻只是显示一个问号

类似这样的东西 [下图]

react-native-vector-icons的链接:https://oblador.github.io/react-native-vector-icons/

enter image description here

0 个答案:

没有答案
相关问题