Aleksandr Mansurov
Aleksandr Mansurov

Reputation: 460

How to hide QuickType from Keyboard in React Native TextInput

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

Upvotes: 1

Views: 651

Answers (1)

kimar
kimar

Reputation: 676

Disabling autocorrect also removes the QuickType suggestions:

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

Upvotes: 4

Related Questions