and then I proceed to wrap my entire form inside the above CustomScrollView like so:
<CustomScrollView>
// ... rest of the form code
</CustomScrollView>
As I type two letters into the first form input the input goes out of focus and the keyboard disappears.
My hunch is that it tries to scroll up while typing
Note that this happens even if I don't wrap the input components inside <ScrollIntoView>
I am using Formik to build my forms. First I wrapped react-native's ScrollView component like so:
and then I proceed to wrap my entire form inside the above
CustomScrollView
like so:As I type two letters into the first form input the input goes out of focus and the keyboard disappears. My hunch is that it tries to scroll up while typing
Note that this happens even if I don't wrap the input components inside
<ScrollIntoView>