react-native中使用react-native-vector-icons图标库

巢烨
2023-12-01

备注: 个人RN版本0.66.4 / react-native-vector-icons 9.0.0

react-native-vector-icons 内置了FontAwesome、 antDesign等常用图标库,还可以支持自定义。

RN0.6以上如何使用?

1、安装:
npm i react-native-vector-icons -D 安装命令。

2、安装完成后,还是需要执行 react-native link
虽然react-native 0.6版本以上有了autolink 。但是还是需要执行一下,否则图标不显示。

3、重新安装app后,引入使用。

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

<Icon name="rocket" size={30} color="#900" />

查找图标名称的官方地址:

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

 类似资料: