How to use React Native vector icons?

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

    You can use :

    icon = {"<"Icon name='lock'/>} 
    

    Or :

    icon = {{ type:'font-awesome',name:'lock'}}
    

    in any React native componant property.

提交回复
热议问题