Answers for "password textInput not working on android"

0

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"
/>
Posted by: Guest on August-20-2020

Code answers related to "password textInput not working on android"

Code answers related to "Javascript"

Browse Popular Code Answers by Language