react-native 使用 iconfont

  • 下载库
npm install --save react-native-vector-icons
  • 关联库
react-native link react-native-vector-icons
  • 调用库
//在头部导入
import Icon from 'react-native-vector-icons/FontAwesome';
<Icon name="search" size={20} color="yellow"/>

效果:  

猜你喜欢

转载自blog.csdn.net/qq_42720683/article/details/88568766