在react native中显示图标,xcode未显示

在react native中显示图标,xcode未显示,xcode,react-native,font-awesome,Xcode,React Native,Font Awesome,在安卓系统中,所有图标都正常显示。但在ios上的TestFlight中,图标显示如下图所示 编辑: 上述代码: <Card borderRadius={25}> <View style={{marginBottom: 15}}> <Input placeholder="Email"

在安卓系统中,所有图标都正常显示。但在ios上的TestFlight中,图标显示如下图所示

编辑: 上述代码:

<Card borderRadius={25}>
                <View style={{marginBottom: 15}}>
                        <Input
                          placeholder="Email"
                          onChangeText={login => setLogin({ login })}
                          value={login}
                          inputStyle={{ marginLeft: 10, color: 'black' }}
                          containerStyle={{ width: '100%' }}
                          keyboardType="email-address"
                          returnKeyType="next"
                          autoCorrect={false}
                          leftIcon={
                          <Icon
                              name="envelope"
                              type="font-awesome"
                              color="#00A2BC"                    
                              size={20}
                          />
                        }/>
                </View>
 </Card>

setLogin({login})}
值={login}
inputStyle={{marginLeft:10,颜色:'black'}
containerStyle={{width:'100%'}}
keyboardType=“电子邮件地址”
returnKeyType=“下一步”
自动更正={false}
左图标={
}/>
我正在使用

从“react native elements”导入{Icon}


我使用iphone ios上的TestFlight安装了这个应用程序

我们能看到一些代码吗?我们能看到一些代码吗?