Swipe Gesture component breaks ScrollView
See original GitHub issueI have a ScrollView wrapped in a <GestureRecognizer>
component. The Swipe action works great, but the scroll view stopped scrolling properly. It’s very glitchy and hardly detects scroll events.
Issue Analytics
- State:
- Created 6 years ago
- Comments:6
Top Results From Across the Web
Gestures inside a scrollview are not working - Microsoft Q&A
In a frame, all the gestures work fine. Adding a scrollview to the mix breaks everything. The swipe events are not fired.
Read more >Scrollview is not working inside GestureRecognizer React ...
But scrolling of the flatlist is not working because of gestureRecongizer. without this it works perfectly but If I use GestureRecognizer, ...
Read more >Using complex gestures in a SwiftUI ScrollView - Daniel Saidi
The gestures conflict with the scroll view gestures, which cause scrolling to stop working and the gestures not being detected.
Read more >react horizontal swipe
This video guides you how to swipe to delete an Item in FlatList with React Native: - Add react-native-swipeout package to use Swipeout...
Read more >ScrollView from scratch with PanGestureHandler in ... - YouTube
In this tutorial we'll learn how to recreate the scroll behavior with just a PanGestureHandler component (from react-native- gesture -handler ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I fixed this issue by returning a
<ScrollView>
component as the<GestureRecognizer>
instead of the standard<View>
– all seems to be working as expected.Having the same issue, anyone get a solution without editing the library source code itself?