I am sort of new to react native and have one question that I did not find in react native documentation.
I am looking into this component KeyboardAvoidingView:
https://facebook.github.io/react-native/docs/keyboardavoidingview.html
Question is simple - has anyone to get KeyboardAvoidingView to work nicely with ScrollView? I have many TextInputs in one component (sum of TextInputs height is bigger then device height), and once the keyboard appears, I have various issues..
If I use View instead of ScrollView then everything is fine, but I can't use it, since I need more space than the device height..
I Couldn't find anything about Scroll in the KeyboardAvoidingView documentation.
Thanks.