Disable IOS keyboard suggestions in React Native

Viewed 21915

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

5 Answers

For ios, accepted answer will work fine but i just wanted to add for the android.

So for android, to hide the suggestions, use keyboardType='visible-password' for the textInput where you want to hide the suggestions.

I think that for iOS you looked for spellCheck={false} Docs

Related