使用react-native-vector-iconsRN0.6+

1.安装

npm install --save react-native-vector-icons
or 
yarn add react-native-vector-icons

2.配置

2.1.IOS配置

修改 info.plist 添加

复制代码

<key>UIAppFonts</key>
<array>
  <string>AntDesign.ttf</string>
  <string>Entypo.ttf</string>
  <string>EvilIcons.ttf</string>
  <string>Feather.ttf</string>
  <string>FontAwesome.ttf</string>
  <string>FontAwesome5_Brands.ttf</string>
  <string>FontAwesome5_Regular.ttf</string>
  <string>FontAwesome5_Solid.ttf</string>
  <string>Foundation.ttf</string>
  <string>Ionicons.ttf</string>
  <string>MaterialIcons.ttf</string>
  <string>MaterialCommunityIcons.ttf</string>
  <string>SimpleLineIcons.ttf</string>
  <string>Octicons.ttf</string>
  <string>Zocial.ttf</string>
  <string>Fontisto.ttf</string>
</array>

复制代码

在ios目录执行 pod install 

2.2.Android配置

修改 android/app/build.gradle 在第二行添加

apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"

3.使用

打开https://oblador.github.io/react-native-vector-icons/找到自己需要的icon,引入自己的工程即可

import FontAwesome5 from 'react-native-vector-icons/FontAwesome5';

<FontAwesome5
    name={'microphone'}
    size={30}
 />

 

在mac中遇到了问题,通过这个解决了,转载自 https://www.cnblogs.com/dch0/p/13383877.html

相关文章

react 中的高阶组件主要是对于 hooks 之前的类组件来说的,如...
我们上一节了解了组件的更新机制,但是只是停留在表层上,例...
我们上一节了解了 react 的虚拟 dom 的格式,如何把虚拟 dom...
react 本身提供了克隆组件的方法,但是平时开发中可能很少使...
mobx 是一个简单可扩展的状态管理库,中文官网链接。小编在接...
我们在平常的开发中不可避免的会有很多列表渲染逻辑,在 pc ...