标签: ios iphone react-native reactive-programming keyboard-events
例如:在登录页面中,当我尝试阅读邮件地址或任何信息时,打开了defult键盘类型。但是我需要将键盘类型轻松地发送到“@”
如何配置键盘类型?它是可选的吗?
答案 0 :(得分:1)
您可以通过TextInput的keyboardType道具来指定键盘:
keyboardType
<TextInput keyboardType='email-address' //other props />
在此处阅读更多react-native-docs