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. 开始你的代码
