Disable IOS keyboard suggestions in React Native

I'm trying to customize the comment page in my application, and I want the comment input fields to sit right on the keyboard, such as Facebook, Instagram, Strava, and many other applications. But when the keyboard arrives, it has suggestions from above: enter image description here

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

React-Native: 0.44.0

+4
source share
3 answers

, , autoCorrect prop TextInput false, . , .

..: <TextInput autoCorrect={false}/>

+10

If ReactNative provides the property autocorrectionTypeon UITextField, you can set it to UITextAutocorrectionTypeNo.

0
source

Source: https://habr.com/ru/post/1682518/


All Articles