矢量图标(react-native-vector-icons)19-11-03

到Github搜索react-native-vector-icons打开,到installation中查看如何安装
https://github.com/oblador/react-native-vector-icons
打开图标库:https://oblador.github.io/react-native-vector-icons/

iOS安装如下:

npm install --save react-native-vector-icons
或者
yarn add react-native-vector-icons
2.到项目ios文件夹下/你的项目名/Image.ecassets/Info.plist中,将下面代码复制进去

UIAppFonts

  AntDesign.ttf
  Entypo.ttf
  EvilIcons.ttf
  Feather.ttf
  FontAwesome.ttf
  FontAwesome5_Brands.ttf
  FontAwesome5_Regular.ttf
  FontAwesome5_Solid.ttf
  Foundation.ttf
  Ionicons.ttf
  MaterialIcons.ttf
  MaterialCommunityIcons.ttf
  SimpleLineIcons.ttf
  Octicons.ttf
  Zocial.ttf

然后在项目下将目标切换到ios 安装目标库
cd ios
pod install

屏幕快照 2019-11-03 16.10.43.png

Android安装如下:

到项目中android文件夹下android/app/build.gradle下将
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
放入在该文件的第二行。
就安装好了库,接下来就是安装使用了

安装使用

打开Github中的如下链接,可以查看图标库,公司的设计人员也可以将自己设计的图标添加到图标库中。

矢量图标(react-native-vector-icons)19-11-03_第1张图片
屏幕快照 2019-11-03 16.19.31.png

引入要使用的图标库,比如Ionicons
import AntDesign from 'react-native-vector-icons/AntDesign


              矢量图标
              

你可能感兴趣的:(矢量图标(react-native-vector-icons)19-11-03)