We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cde5180 + d710cf2 commit bae8a00Copy full SHA for bae8a00
android/src/main/java/com/rnnestedscrollview/ReactNestedScrollView.java
@@ -283,9 +283,9 @@ public void fling(int velocityY) {
283
postInvalidateOnAnimation();
284
285
// END FB SCROLLVIEW CHANGE
286
- } else {
287
- super.fling(velocityY);
288
}
+ //Fixed fling issue on support library 26 (see issue https://github.com/cesardeazevedo/react-native-nested-scroll-view/issues/16)
+ super.fling(velocityY);
289
290
if (mSendMomentumEvents || isScrollPerfLoggingEnabled()) {
291
mFlinging = true;
0 commit comments