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
CodePudding user response:
use the following props in your <TextInput />
- for android use:
keyboardType='visible-password'
- for ios use:
autoCorrect={false}