Hi,
It works all fine when I test on Expo App, but when I build standalone app on Android, automatically scrolling to focused field is not working. I have to then use scrollToInput method that you have mentioned in readme, I am also using react navigation 3.11.1. Any ideas what's going on?
the same issue
Had the same issue, used the enableOnAndroid flag on each one of the scroll views and that fixed my problem.
I having the same problem here.
I wrapped all the children inside the KeyboardAwareScrollView in a View and defined a big height value, it worked for me
<KeyboardAwareScrollView
enableAutomaticScroll
extraScrollHeight={10}
enableOnAndroid={true}
extraHeight={Platform.select({ android: 100 })}
style={{ flexGrow: 1 }}
>
<View style={{ height: 1000 }}>
{/*Children*/}
</View>
</KeyboardAwareScrollView>
what's the diff between extraScrollHeight and extraHeight prop?
Most helpful comment
I wrapped all the children inside the KeyboardAwareScrollView in a View and defined a big height value, it worked for me