How do you style a TextInput in react native for password input
When this was asked there wasn't a way to do it natively, however this will be added on the next sync according to this pull request. Here is the last comment on the pull request - "Landed internally, will be out on the next sync"
When it is added you will be able to do something like this
<TextInput secureTextEntry={true} style={styles.default} value="abc" />
refs
May 2018 react-native version 0.55.2
This works fine:
secureTextEntry={true}
And this does not work anymore:
password={true}