Closed m-arslan01 closed 4 years ago
I am having issue by making the input type to password . I am using Fumi component from your package.
<Fumi label={'Enter password'} iconClass={FontAwesomeIcon} iconName={'key'} iconColor={'#808080'} iconSize={20} iconWidth={40} inputPadding={16} onChangeText={(password) => setpassword(password)} />
It is handled by react-native and you can achieve that by passing secureTextEntry={true} prop to any TextInput component. Please checkout https://reactnative.dev/docs/textinput#securetextentry
react-native
secureTextEntry={true}
I am having issue by making the input type to password . I am using Fumi component from your package.
<Fumi label={'Enter password'} iconClass={FontAwesomeIcon} iconName={'key'} iconColor={'#808080'} iconSize={20} iconWidth={40} inputPadding={16} onChangeText={(password) => setpassword(password)} />