srivastavaanurag79 / react-native-paper-select

Dropdown using React Native Paper TextInput, Checkbox and Dialog
https://anurag-srivastava.gitbook.io/react-native-paper-select/
MIT License
48 stars 15 forks source link

Madal not respond to KeyboardAvoidingView #42

Closed PawelGIX closed 5 months ago

PawelGIX commented 9 months ago

Modal window is not keyboard aware. I'm using However, the modal does not seem to respond to it. simulator_screenshot_31098485-1C7C-41BB-AC1B-AA6CB419C5EC

image
srivastavaanurag79 commented 9 months ago

will let you know when fixed

srivastavaanurag79 commented 5 months ago

To make the React Native Paper Modal window keyboard-aware, you can use the react-native-keyboard-aware-scroll-view library in combination with the KeyboardAvoidingView

<KeyboardAwareScrollView
            contentContainerStyle={{ flex: 1 }}
            extraScrollHeight={Platform.select({ ios: 20, android: 20 })}
            enableOnAndroid
          >