【问题标题】:How to hide QuickType from Keyboard in React Native TextInput如何在 React Native TextInput 中从键盘隐藏 QuickType 【发布时间】:2017-05-05 16:40:35 【问题描述】: 是否可以在 TextInput 的键盘上隐藏 QuickType? 【问题讨论】: 标签: react-native quicktype 【解决方案1】: 禁用自动更正也会删除 QuickType 建议: <TextInput onChangeText={(text) => this.setState({text})} value={this.state.text} autoCorrect={false} /> 【讨论】: