如何使用 React Native select IOS 的键盘类型

How to select keyboard's type for IOS with react native

例如:在登录页面,当我尝试读取邮件地址或任何信息时,默认键盘类型打开。但是我需要将键盘类型邮寄给“@”

如何让我配置键盘类型?它是可选的吗?

您可以通过 TextInput 的 keyboardType 属性指定键盘:

<TextInput
keyboardType='email-address'
//other props

/>

在此处阅读更多内容 react-native-docs