When I render a TextInput component with the "type" prop set to "password", the input text is still visible.
I would expect the TextInput to hide the input text with asterixes.
<TextInput type="password" id="password" name="password" label="Password" value={this.state.password} />

Googling for the answer makes it seem like the TextInput component simply does not support this, but this seems unlikely to me.
Any help is greatly appreciated, so thank you in advance!
| software | version
| --------------------- | -------
| android | SDK 26
| react-native | 16.3.1
| react-native-paper | ^1.11.1
| node | v8.11.3
| npm or yarn | 6.1.0
hey,
try this:
<TextInput
secureTextEntry
/>
https://facebook.github.io/react-native/docs/textinput#securetextentry
Most helpful comment
hey,
try this:
https://facebook.github.io/react-native/docs/textinput#securetextentry