3

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

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


<Icon
  name='g-translate'
  color='#00aced' />

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

4

1 回答 1

3

您可以使用“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" />;

于 2020-05-26T03:43:14.847 回答