How to use React Native vector icons?

后端 未结 6 1562
感动是毒
感动是毒 2020-12-24 02:54

I have just installed React Native vector icons with this comand:

npm install react-native-vector-icons

But if I use it in the index.androi

6条回答
  •  清歌不尽
    2020-12-24 03:06

    Here is full UPDATED answer, just follow these steps :-

    1. npm install react-native-vector-icons --save
    2. react-native link
    3. react-native link react-native-vector-icons
    4. import Icon using one of these ( as per your requirement )

      MaterialCommunityIcons

      import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
      

      Ionicons

      import Icon from 'react-native-vector-icons/Ionicons';
      

      FontAwesome5

      import Icon from 'react-native-vector-icons/FontAwesome5';
      
    5. Uses (JSX)

       
      

提交回复
热议问题