I couldn't manage to change the style of TextInput in React Native when the secureTextEntry prop set to true. Also the default style of input changes, I understood this is due to android native behaviour. The below code does not change the style unless I unset secureTextEntry.
<TextInput secureTextEntry={true} style={{color: "white"}}/>
I have a login form and having different styles for email input and password input is disturbing. Does anyone know how to fix this?
UPDATED
Seems like the following PR will fix the issue: