无法在 ios 上显示 "react-native-vector-icons" 的 "Edit" 图标

Unable to show "Edit" icon of "react-native-vector-icons" on ios

我正在开发 React Native 应用程序。我正在使用 React Native 矢量图标。我无法显示编辑图标,这是我的代码

import Icon from 'react-native-vector-icons/FontAwesome';    

<Icon style={{marginTop : '1.5%'}} name="Edit"/>

这显示的是问号而不是图标。

但如果我这样做

import Icon from 'react-native-vector-icons/FontAwesome';    

<Icon style={{marginTop : '1.5%'}} name="area-chart"/>

我得到 "area chart" 图标。为什么 "area chart" 图标在工作而不是 "edit" 图标。

我认为名字应该是小写字母,例如,

<Icon style={{marginTop : '1.5%'}} name="edit"/>

有关详细信息,请参阅 this & this

尝试使用类型="font-awesome" <Icon style={{marginTop : '1.5%'}} type="font-awesome" color: "pickYourColor" name="edit"/>