How to remove some part from keyboard in react native app?

456 Views Asked by At

I have an empty header on my keyboard (I mean the row above letters), how can I remove this part from the keyboard in my react native app? Thanks

enter image description here

1

There are 1 best solutions below

1
walid sahli On BEST ANSWER

use the following props in your <TextInput />

  • for android use: keyboardType='visible-password'
  • for ios use: autoCorrect={false}