如何在react-native-paper中获取图标组件而不像react-native-elements中那样使用按钮组件

Pat*_*ack 5 icons react-native react-native-elements react-native-paper

我正在使用react-native-paper,我想获得一个图标组件,但没有与按钮组件的任何链接。我浏览了文档,但没有找到图标组件。我想要类似于react-native-elements的东西

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


<Icon
  name='g-translate'
  color='#00aced' />
Run Code Online (Sandbox Code Playgroud)

所以请帮助我实现这一目标。

小智 5

您可以使用“react-native-vector-icons”库,因为react-native-paper中的图标来自react-native-vector-icons。这是代码:

import Icon from 'react-native-vector-icons/FontAwesome'; const myIcon = <Icon name="rocket" size={30} color="#900" />;