react-native-vector-icons是一个React Native 项目使用最广泛的矢量图标图标库,使用简单,内容丰富。
react-native-vector-icons官网
react-native-vector-icons图标展示列表

使用react-native-vector-icons主要分为安装和使用两部分

安装

// 添加依赖
npm install --save react-native-vector-icons

// 链接原生库
react-native link react-native-vector-icons

使用

这里注意并不是引入之后就可以用直接用所有的icon图标 要根据图标所在的范围进行不同的修改, / 后面那个单词是一个范围
如图:被圈起来的就是链接/后面要写的单词
react-native-vector-icons的安装和使用

import AntDesign from "react-native-vector-icons/AntDesign";


<AntDesign name = {'stepforward'} />;

react-native-vector-icons的安装和使用

这样就可以在reactnative项目中使用了

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-10
  • 2021-05-12
  • 2021-07-31
  • 2021-08-10
  • 2021-08-04
  • 2021-11-03
猜你喜欢
  • 2022-12-23
  • 2021-05-17
  • 2021-11-29
  • 2022-12-23
  • 2021-06-15
相关资源
相似解决方案