When it comes to styling a password input like the one below:
<TextInput
name="Password"
type="password"
mode="outline"
secureTextEntry={true}
style={styles.inputStyle}
autoCapitalize="none"
autoFocus={true}
/>
I also applied this style to it:
inputStyle {
fontSize: 30,
color: '#333',
fontWeight: '900'
}
However, it seems that these styles are not actually being applied to the input. Interestingly, once I remove the secureTextEntry={true}
prop, the styles take effect. It appears that styling password fields is different - do you have any ideas on how I can achieve this?