not supported in secure text entry in react native code example
Example: password textInput not working on android
[Android Only]
If you have an keyboardType prop with values 'email-address' or 'phone-pad' in your TextInput the secureTextEntry doesn't work and the input shows its value as a normal input (not like an password input).
<TextInput
secureTextEntry
keyboardType="email-address"
/>
<TextInput
secureTextEntry
keyboardType="phone-pad"
/>