react-native 引入 react-native-vector-icons

756 阅读1分钟
    npm install react-native-vector-icons --S 
    or
    yarn react-native-vector-icons -S

配置安卓:将项目中node-modeles\react-native-vector-icons\Fonts目录下所有ttf文件复制到 项目andriod\app\src\main\assets\fonts目录下 (assets\fonts没有则新建文件夹)

修改andriod/app目录下的build.gradle文件,在文件最上面增加 apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"

配置iOS: pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'

在RN项目找那个导入组件 import FontAwesome from 'react-native-vector-icons/dist/FontAwesome'

图例地址:oblador.github.io/react-nativ…