Open vahdet opened 4 years ago
In order to disable TextInput suggestions and text underlining in Android, autoCorrect={false} is not enough, we have to add keyboardType="visible-password". When it is resolved, this keyboardType workaround can be removed.
TextInput
autoCorrect={false}
keyboardType="visible-password"
See the SO question: https://stackoverflow.com/questions/50143702/react-native-android-textinput-autocorrect-false-does-not-disable-suggestions
See the RN issue (even closed there is no final & clean solution): https://github.com/facebook/react-native/issues/18457
In order to disable
TextInput
suggestions and text underlining in Android,autoCorrect={false}
is not enough, we have to addkeyboardType="visible-password"
. When it is resolved, this keyboardType workaround can be removed.See the SO question: https://stackoverflow.com/questions/50143702/react-native-android-textinput-autocorrect-false-does-not-disable-suggestions
See the RN issue (even closed there is no final & clean solution): https://github.com/facebook/react-native/issues/18457