Reputation: 460
Is it possible to hide QuickType from keyboard in TextInput ?
Upvotes: 1
Views: 651
Reputation: 676
Disabling autocorrect also removes the QuickType suggestions:
<TextInput
onChangeText={(text) => this.setState({text})}
value={this.state.text}
autoCorrect={false}
/>
Upvotes: 4