react-native:<TextInput/> 删除键盘预测
react-native: <TextInput/> remove keyboard predictions
我这里有一个 <TextInput/>
React 本机组件。
(第一个文本输入)
当我点击它进行输入时,我会在键盘上方看到那个矩形条,它会在你输入时进行预测。
我不想让这个出现。
我该如何摆脱它?
https://facebook.github.io/react-native/docs/textinput.html
组件代码如下:
<TextInput
placeholder="email"
autoCapitalize="none"
keyboardType="email-address"
placeholderTextColor="white"
style={styles.input}
onChangeText={email => this.setState({ email })}
value={this.state.email}
/>
我把一些不想让你看到的部分涂黑了。不用担心这些。
尝试使用 <TextInput autoCorrect={false} />
禁用建议。
我这里有一个 <TextInput/>
React 本机组件。
(第一个文本输入)
当我点击它进行输入时,我会在键盘上方看到那个矩形条,它会在你输入时进行预测。
我不想让这个出现。
我该如何摆脱它?
https://facebook.github.io/react-native/docs/textinput.html
组件代码如下:
<TextInput
placeholder="email"
autoCapitalize="none"
keyboardType="email-address"
placeholderTextColor="white"
style={styles.input}
onChangeText={email => this.setState({ email })}
value={this.state.email}
/>
我把一些不想让你看到的部分涂黑了。不用担心这些。
尝试使用 <TextInput autoCorrect={false} />
禁用建议。