mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-10 01:15:00 +08:00
Remove onScrollAnimationEnd
Summary: <!-- Thank you for sending the PR! If you changed any code, please provide us with clear instructions on how you verified your changes work. In other words, a test plan is *required*. Bonus points for screenshots and videos! Please read the Contribution Guidelines at https://github.com/facebook/react-native/blob/master/CONTRIBUTING.md to learn more about contributing to React Native. Happy contributing! --> Closes https://github.com/facebook/react-native/pull/15156 Differential Revision: D5479265 Pulled By: shergin fbshipit-source-id: a2dfa3a4357e126838a17dac4797d1d845cd56ae
This commit is contained in:
committed by
Facebook Github Bot
parent
b8118d1b79
commit
aa9a19ab8d
@@ -220,7 +220,6 @@ public class ReactScrollViewManager
|
||||
.put(ScrollEventType.SCROLL.getJSEventName(), MapBuilder.of("registrationName", "onScroll"))
|
||||
.put(ScrollEventType.BEGIN_DRAG.getJSEventName(), MapBuilder.of("registrationName", "onScrollBeginDrag"))
|
||||
.put(ScrollEventType.END_DRAG.getJSEventName(), MapBuilder.of("registrationName", "onScrollEndDrag"))
|
||||
.put(ScrollEventType.ANIMATION_END.getJSEventName(), MapBuilder.of("registrationName", "onScrollAnimationEnd"))
|
||||
.put(ScrollEventType.MOMENTUM_BEGIN.getJSEventName(), MapBuilder.of("registrationName", "onMomentumScrollBegin"))
|
||||
.put(ScrollEventType.MOMENTUM_END.getJSEventName(), MapBuilder.of("registrationName", "onMomentumScrollEnd"))
|
||||
.build();
|
||||
|
||||
@@ -17,8 +17,7 @@ public enum ScrollEventType {
|
||||
END_DRAG("topScrollEndDrag"),
|
||||
SCROLL("topScroll"),
|
||||
MOMENTUM_BEGIN("topMomentumScrollBegin"),
|
||||
MOMENTUM_END("topMomentumScrollEnd"),
|
||||
ANIMATION_END("topScrollAnimationEnd");
|
||||
MOMENTUM_END("topMomentumScrollEnd");
|
||||
|
||||
private final String mJSEventName;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user