Gustash / react-native-image-keyboard

React Native TextInput expansion to enable media input.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`TextInput` `secureTextEntry` doesn't work

atirnayab opened this issue · comments

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.

I have the same issue

You should read past issues before opening new ones.

#7 (comment)
The fix is to add multiline={false} prop to the TextInput component.