首先安装插件
    yarn add react-native-vector-icons

    为了完成 react-native-screens 在 Android 上的安装, 请在android/app/build.gradle 中加入

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

    第二步:引入使用

    1. import React, { Component } from 'react';
    2. import { View, Text } from 'react-native';
    3. import AntIcon from 'react-native-vector-icons/AntDesign'; //引入
    4. import IonIcons from 'react-native-vector-icons/Ionicons' // 引入
    5. export default class HomePage extends Component {
    6. render() {
    7. return (
    8. <View>
    9. <AntIcon name="up" size={30} color="#90c"/>
    10. <AntIcon name="stepforward" size={30} color="#90c"/> //出不来的情况要把-去掉
    11. <IonIcons name="add" size={30} color="#90c"></IonIcons>
    12. </View>
    13. );
    14. }
    15. }