Gustash / react-native-image-keyboard

React Native TextInput expansion to enable media input.
MIT License
147 stars 14 forks source link

`TextInput` `secureTextEntry` doesn't work #36

Closed atirnayab closed 1 year ago

atirnayab commented 1 year ago

After adding react-native-image-keyboard secureTextEntry on TextInput don't work.

<TextInput
  style={themedStyle.border}
  onChangeText={onChange}
  onBlur={onBlur}
  value={value}
  secureTextEntry
  autoCapitalize="none"
  />

This works like normal text input field.

83wid commented 1 year ago

I have the same issue

dragi-ns commented 1 year ago

You should read past issues before opening new ones.

https://github.com/Gustash/react-native-image-keyboard/issues/7#issuecomment-714328960 The fix is to add multiline={false} prop to the TextInput component.