I am trying to toggle the visibility of password type input in TextInput component. I've set up state variable for toggling secureTextEntry props. When I toggle the secureTextEntry props value from true to false, the keyboard suggestions start to appear on the keyboard. I don't want such behavior, as password needs to be private. Such implementation gives bad experience to users. What I want is to disable the keyboard suggestions whenever the secureTextEntry props is set to false so that use can see what they've typed in password field.
This issue is only on Android. I've not tested on iOS yet.
I've tried using 'autoCorrect', 'autoCompleteType', and 'textContentType' props in all possible variations but I am still not able to achieve the result.
Here is confirmed Snack repro.