Hello Friends đź‘‹,

Welcome To Infinitbility! ❤️

This tutorial will help you to make password textinput in react native, where also some basics question will be clear like how to hide password, show asterisks instead of password, and how to styles password input.

For making Password TextInput react-native text input provide secureTextEntry={true} flag if it is true TextInput show asterisks instead of text or when it is false it will show text normally and its default value is false.

Let’s understand with an example.

<TextInput secureTextEntry={true} style={styles.default} value="abc" />

Thanks For Reading…