diff --git a/Libraries/Components/ScrollView/ScrollView.js b/Libraries/Components/ScrollView/ScrollView.js index 74026c7e649663..1f6c55aff66807 100644 --- a/Libraries/Components/ScrollView/ScrollView.js +++ b/Libraries/Components/ScrollView/ScrollView.js @@ -256,6 +256,15 @@ const ScrollView = createReactClass({ * events can be controlled using the `scrollEventThrottle` prop. */ onScroll: PropTypes.func, + /** + * Called when the user begins to drag the scroll view. + */ + onScrollBeginDrag: PropTypes.func, + /** + * Called when the user stops dragging the scroll view and it either stops + * or begins to glide. + */ + onScrollEndDrag: PropTypes.func, /** * Called when scrollable content view of the ScrollView changes. *