Michal96
Michal96

Reputation: 65

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

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

Upvotes: 2

Views: 526

Answers (1)

walid sahli
walid sahli

Reputation: 416

use the following props in your <TextInput />

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

Upvotes: 1

Related Questions