I am working with a long form which is wrapped in a KeyBoardAwareScrollView, with the following props:
<KeyboardAwareScrollView contentContainerStyle={{paddingBottom: Dimensions.get('window').height * 0.2}} showsVerticalScrollIndicator={false}>
It works as expected, however when the user focuses and unfocuses in any of the TextInputs, the ScrollView scrolls back to the top, and the user needs to manually scroll back to the position that they were at.
I am not sure if this is a bug, or if it is the expected behavior, but is there an option that will allow the scrollview to return to its previous position on unfocus? I can provide a gif of what is happening, or provide more of the code if needed.
facing same issue..
@rileyb94 try the below option
enableResetScrollToCoords={false}
This seems to be an issue with RN 0.56.0
Looks like adding enableResetScrollToCoords={false} for the KeyboardAwareScrollView worked for me! thanks @raghuureddy
setting enableResetScrollToCoords to false doesn't solve the problem, the content remains offset, is there any other way to resolve this?
Still no solution for this?
any resolution to this?!
Bueller?
any resolution to this?!

enableResetScrollToCoords={false}
work not well when input end of content.
adding enableResetScrollToCoords={false} on <content> instead of KeyboardAwareScrollView solved the issue for me.
Most helpful comment
@rileyb94 try the below option
enableResetScrollToCoords={false}This seems to be an issue with RN 0.56.0