How to hide QuickType from Keyboard in React Native TextInput

637 views Asked by At

Is it possible to hide QuickType from keyboard in TextInput ? This

1

There are 1 answers

0
kimar On BEST ANSWER

Disabling autocorrect also removes the QuickType suggestions:

 <TextInput
   onChangeText={(text) => this.setState({text})}
   value={this.state.text}
   autoCorrect={false}
 />