react-native react-native-vector-icons:如何使用字体真棒图标

前端之家收集整理的这篇文章主要介绍了react-native react-native-vector-icons:如何使用字体真棒图标前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的react-native应用程序中,我添加了这个库react-native-vector-icons来使用图标.在 github页面中,FontAwesome列在捆绑的图标集中.但我不知道如何在元素中引用一个fontawesome项目.似乎我只能使用“ios-xxx”,“md-xxx”或“log-xxx”.

当我尝试这样的事情时:

<Icon name='fa-RSS' style={{marginRight:10}} />

我收到这个警告:

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

<Icon name="RSS" size={30} color="#900" />
原文链接:https://www.f2er.com/react/300913.html

猜你在找的React相关文章