react-native-keyboard-aware-scroll-view not working properly
Personally solved this by using flex...
<KeyboardAwareScrollView contentContainerStyle={{flex: 1}}>
<View style={{flex: 1}}>
To make it working in android with expo I had to add a few more things, hope this will help
<KeyboardAwareScrollView extraScrollHeight={100} enableOnAndroid={true}
keyboardShouldPersistTaps='handled'>
<ScrollView>
</ScrollView>
</KeyboardAwareScrollView>
I solved this problem by using another lib. Not sure why the react-native-keyboard-aware-scroll-view doesn't work but if you implement the react-native-keyboard-aware-view you shouldn't have any problems.
https://www.npmjs.com/package/react-native-keyboard-aware-view