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 best solutions below

0
kimar On BEST ANSWER

Disabling autocorrect also removes the QuickType suggestions:

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