You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using SideSwipe in a ScrollView, touch events on SideSwipe are unconditionnally captured and prevent the screen from scrolling. The culprit seems to be:
onStartShouldSetPanResponder: ()=>true,
It always makes SideSwipe the pan responder has soon has we touch it. SideSwipe should be a bit more lax about being the responder. Using the shouldCapture callback works fine for me:
When using SideSwipe in a
ScrollView
, touch events on SideSwipe are unconditionnally captured and prevent the screen from scrolling. The culprit seems to be:It always makes SideSwipe the pan responder has soon has we touch it. SideSwipe should be a bit more lax about being the responder. Using the
shouldCapture
callback works fine for me:The text was updated successfully, but these errors were encountered: