react-native-vector-icons是一個React Native 項目使用最廣泛的矢量圖標圖標庫,使用簡單,內容豐富。
react-native-vector-icons官網
react-native-vector-icons圖標展示列表
使用react-native-vector-icons主要分為安裝和使用兩部分
安裝
// 添加依賴
npm install --save react-native-vector-icons
// 鏈接原生庫
react-native link react-native-vector-icons
使用
這里注意並不是引入之后就可以用直接用所有的icon圖標 要根據圖標所在的范圍進行不同的修改, / 后面那個單詞是一個范圍
如圖:被圈起來的就是鏈接/后面要寫的單詞
import AntDesign from "react-native-vector-icons/AntDesign";
<AntDesign name = {'stepforward'} />;
這樣就可以在reactnative項目中使用了