0

Using react-native's TextInput, i can get the following by setting autoCorrect={false} : Keyboard

That is, it effectively hides the suggestion's content but not the bar. Is it possible to hide the suggestion bar too? I have heard about textVisiblePassword but it seems a hack to me since the text field is...well, not a visible password. I just want to use that space for my app (specially in smaller phones).

chubakueno
  • 565
  • 4
  • 18

1 Answers1

-2

When developing for 2.0+, the supposed way is setting

android:inputType="textNoSuggestions"

if still it doesn't work in some devices than you can also try

android:inputType="textFilter"

for further refer this Android official Link

Upendra Shah
  • 2,218
  • 17
  • 27