Question: detect Horizontal swipe of the content
Hi!
My bottom sheets present sort of tabs view – and I’d like the user to be able to move between the tabs by swiping left and right
I wrapped the content with FlingGestureHandler of react-native-gesture-handler, but it fails to detect the swipe. Any idea?
Thank you!
I'm facing the same issue! Tried using a ScrollView with horizontal scrolling and snapping enabled but didn't have any luck.
+1
+1
+1
Make sure you're wrapping the component you render inside the renderContent prop inside the <FlingGestureHandler /> and NOT the whole <BottomSheet /> component. I did the latter first and it didn't work. The former registers gesture events for me.