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
Related to #1 , the pan responder is very janky inside scrollview containers. If the swiping gesture for day selector moves up or down even just a little, enough to activate the scrollview, the day selector swipe cancels. The swiper has to have a very steady hand, therefore.
I found the following line in DaySelector.react.js
Related to #1 , the pan responder is very janky inside scrollview containers. If the swiping gesture for day selector moves up or down even just a little, enough to activate the scrollview, the day selector swipe cancels. The swiper has to have a very steady hand, therefore.
I found the following line in DaySelector.react.js
onPanResponderTerminationRequest: (evt, gestureState) => true,
and changed
true
tofalse
onPanResponderTerminationRequest: (evt, gestureState) => false,
and it seems to have done the trick. Do you see potential problems with this change, or can we have that change implemented in the source?
The text was updated successfully, but these errors were encountered: