So I have a password input like below :
<TextInput
name="Password"
type="password"
mode="outline"
secureTextEntry={true}
style={styles.inputStyle}
autoCapitalize="none"
autoFocus={true}
/>
and have this style applied to it :
inputStyle {
fontSize: 30,
color: '#333',
fontWeight: '900'
}
But it seems that these styles not actually applied to the input. however once I remove the secureTextEntry={true}
props, it will effected. So I guess styling the password ballets is kind of difference, any idea how I can achieve it?