Search code examples
react-nativereact-native-ui-kitten

Keyboard and Modal with React native (UI Kitten)


I have one model with textinput inside, but, my keyboard overlap this field.
I tried to use KeyboardAvoidingView, but did not work.

Can someone help me please?

Wrong


Solution

  • There is a good lib that resolves this problem react-native-keyboard-aware-scroll-view

    yarn add react-native-keyboard-aware-scroll-view
    

    The component auto-scroll to focused text input!

    import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view'
    <KeyboardAwareScrollView>
      <View>
        <TextInput />
      </View>
    </KeyboardAwareScrollView>