如何添加按钮'完成'在我的键盘电子邮件与React Native?
因为我只使用returnKeyType='done'
设置了键盘编号。
谢谢。
答案 0 :(得分:0)
您可以使用keyboardType
prop。
示例: -
<TextInput
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(text) => this.setState({text})}
value={this.state.text}
keyboardType="email-address"
/>
https://facebook.github.io/react-native/docs/textinput.html#keyboardType