Disable IOS keyboard suggestions in React Native

Ryan Wilson picture Ryan Wilson · Jul 28, 2017 · Viewed 14.4k times · Source

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

Answer

Ryan Wilson picture Ryan Wilson · Jul 31, 2017

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}/>