React-Native之圖標庫react-native-vector-icons 的集成-炒雞簡單
icons圖標庫的優(yōu)缺點可自行查閱,這里只記錄集成過程:
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. 開始你的代碼
