Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable IOS keyboard suggestions in React Native

I'm trying to set up a comment page in my app and I want to have the comment input field sitting right on top of the keyboard like Facebook, Instagram, Strava and many other apps have. But when the keyboard comes in it has suggestions on the top like so: enter image description here

I want to disable the suggestions above the keyboard here so that I can put my textinput on top of the keyboard. Is this possible in React-Native?

React-Native: 0.44.0

like image 568
Ryan Wilson Avatar asked Jul 28 '17 17:07

Ryan Wilson


People also ask

Is keyboard visible React Native?

To detect when keyboard is opened or closed in React Native, we can call Keyboard. addListener to listen to the 'keybvoardDidShow' and 'keyboardDidHide' events to watch for the keyboard showing and hiding respectively.


1 Answers

So after a some more digging I found that if you set the autoCorrect prop on the TextInput itself to false, it removes the suggestions above the keyboard. No need to go into the native code to try and fix this.

ie: <TextInput autoCorrect={false}/>

like image 66
Ryan Wilson Avatar answered Oct 20 '22 16:10

Ryan Wilson