Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React Native: Android TextInput autoCorrect={false} does not disable suggestions

autoCorrect={false} is suppose to force no suggestions mode, and therefore no underlining of text in the input field but it's not working.

UPDATE 8/18/18: It seems to disable the suggestions but not the underlining.

like image 455
ericjam Avatar asked May 02 '18 21:05

ericjam


2 Answers

It's a bug in React Native but you can use : keyboardType="visible-password" to disable autocorrect suggestions.

like image 63
Hbd770 Avatar answered Nov 20 '22 05:11

Hbd770


autoCorrect={false} is working some of android phones on my project but If you use with keyboardType="visible-password" is work on my project!

like image 1
Mustafa ERK Avatar answered Nov 20 '22 05:11

Mustafa ERK