How to use React Native vector icons?

后端 未结 6 1552
感动是毒
感动是毒 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:22

    Step 1: Install react-native-element:

    npm install react-native-elements --save
    

    Steps 2: Install react-native-vector-icons Install from npm

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

    Link it

    react-native link react-native-vector-icons
    

    After that you can use it in your page by: Step 1:

    import { Icon } from 'react-native-elements';
    

    Step 2:

    
    

提交回复
热议问题