2018-08-29

作者: 狂野的骚猪 | 来源:发表于2018-08-29 11:59 被阅读0次

    React-Native之图标库react-native-vector-icons 的集成-炒鸡简单



    icons图标库的优缺点可自行查阅,这里只记录集成过程:

    1. cd “你的项目”

    2. npm install react-native-vector-icons --save

    iOS :3. 

    4. 

    5.

    6. iOS集成结束

    安卓:

    import com.oblador.vectoricons.VectorIconsPackage;@Overrideprotected List getPackages() {return Arrays.asList(new MainReactPackage(), new VectorIconsPackage());} compile project(':react-native-vector-icons') include ':react-native-vector-icons' project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')

    8. 开始你的代码

    相关文章

      网友评论

        本文标题:2018-08-29

        本文链接:https://www.haomeiwen.com/subject/aluhwftx.html