Search code examples
react-nativeheaderkeyboardcustom-keyboardreact-simple-keyboard

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


Solution

  • use the following props in your <TextInput />

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