react-native-bottom-sheet is not scrolling bottom to top in the below scenario.
- Scroll to the bottom
- Close the bottom sheet to the start position
- Try to scroll from bottom to top
Please see the video
My code is as follows
<BottomSheet
ref={ref}
index={0}
snapPoints={[200, 500]}>
<BottomSheetScrollView contentContainerStyle={styles.bottomSheetContentContainer}>
// components to render inside the bottom sheet
</BottomSheetScrollView>
</BottomSheet>;