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
I also tried to find the solution on the internet, but I figured it out myself. I was able to make keyboardAvoidingView
to work with ScrollView
on the iPhone SE simulator.
I used padding type position
, with keyboardVerticalOffset
set to some higher value. I hope this helps everybody who is trapped in this situation.
render() {
return (
);
}