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
Will get the warning message:ScrollView doesn't take rejection well - scrolls anyway
Debug in Chrome,this is throw with "ScrollResponder.js",its "scrollResponderHandleResponderReject" method.This is its comments and the "scrollResponderHandleResponderReject" method:
/**
* Invoke this from an `onResponderReject` event.
*
* Some other element is not yielding its role as responder. Normally, we'd
* just disable the `UIScrollView`, but a touch has already began on it, the
* `UIScrollView` will not accept being disabled after that. The easiest
* solution for now is to accept the limitation of disallowing this
* altogether. To improve this, find a way to disable the `UIScrollView` after
* a touch has already started.
*/
scrollResponderHandleResponderReject: function() {
warning(false, "ScrollView doesn't take rejection well - scrolls anyway");
},
It said,the solution for now is to accept the limitation of disallow this altogether.
Is there an other better way to solve this problem here?
The text was updated successfully, but these errors were encountered:
When used the react-native-scrollable-tab-view,use nested,like this:
Will get the warning message:ScrollView doesn't take rejection well - scrolls anyway
Debug in Chrome,this is throw with "ScrollResponder.js",its "scrollResponderHandleResponderReject" method.This is its comments and the "scrollResponderHandleResponderReject" method:
It said,the solution for now is to accept the limitation of disallow this altogether.
Is there an other better way to solve this problem here?
The text was updated successfully, but these errors were encountered: