如何添加按钮'完成'在我的键盘电子邮件与React Native?

时间:2017-12-11 15:13:07

标签: android ios react-native

ExemplePic

如何添加按钮'完成'在我的键盘电子邮件与React Native? 因为我只使用returnKeyType='done'设置了键盘编号。 谢谢。

1 个答案:

答案 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