password textinput not working on android

Solutions on MaxInterview for password textinput not working on android by the best coders in the world

showing results for - "password textinput not working on android"
Lea
06 Jan 2021
1[Android Only]
2
3If 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).
4
5<TextInput
6  secureTextEntry
7  keyboardType="email-address"
8/>
9
10<TextInput
11  secureTextEntry
12  keyboardType="phone-pad"
13/>
14
similar questions
queries leading to this page
password textinput not working on android