react-native开发

react-native-vector-icons 库

2021-01-28  本文已影响0人  朱传武

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

image.png
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也和用到的库名称对应起来就可以了。

上一篇 下一篇

猜你喜欢

热点阅读