react-native-hide-show-password-input
react-native-hide-show-password-input copied to clipboard
keyboard type is inconsistent
This is a strange behavior. When toggling the eye the keyboard goes from this

to this

I'm using it like this
<PasswordInputText
testID="pin input"
style={styles.input}
fontSize={14}
keyboardType="decimal-pad"
multiline={false}
onChangeText={onPinChange}
onSubmitEditing={() => pin && onSubmit(pin)}
value={pin}
label={`${t('login:pin')}*`}
secureTextEntry
tintColor="#696969"
textColor="#696969"
baseColor="#696969"
iconColor="#696969"
lineWidth={1}
/>