joshkmartinez
joshkmartinez

Reputation: 664

react-native: <TextInput/> remove keyboard predictions

I have a <TextInput/> react native component here. When I begin typing in it, I see the predictions box above the keyboard. I don't want this to show up, how can I get rid of this?
https://facebook.github.io/react-native/docs/textinput.html

<TextInput
placeholder="email"
autoCapitalize="none"
keyboardType="email-address"
placeholderTextColor="white"
style={styles.input}
onChangeText={email => this.setState({ email })}
value={this.state.email}
/>

keyboard

Upvotes: 2

Views: 1444

Answers (1)

aravind_reddy
aravind_reddy

Reputation: 5466

Try Using <TextInput autoCorrect={false} /> for disabling suggestions.

Upvotes: 2

Related Questions