Reputation: 65
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
Upvotes: 2
Views: 526
Reputation: 416
use the following props in your <TextInput />
keyboardType='visible-password'
autoCorrect={false}
Upvotes: 1