0
点赞
收藏
分享

微信扫一扫

react-native-vector-icons 库

酷子腿长一米八 2021-09-25 阅读 156

想某些demo做的比较像样子的话,这个库非常合适!
支持的图标速查表:
https://oblador.github.io/react-native-vector-icons/
库地址:https://github.com/oblador/react-native-vector-icons#bundled-icon-sets
具体用法:去速查表搜索相应的图标:

import Ionicons from 'react-native-vector-icons/FontAwesome5';
iconName = focused ? 'user-friends' : 'user-friends';
return <Ionicons1 name={iconName} size={size} color={color} />;

iconName 和搜索到的name统一一致起来,然后FontAwesome5也和用到的库名称对应起来就可以了。

举报

相关推荐

0 条评论