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