From 3eae3df5d136a39ec40ce928a444cf7d56493e36 Mon Sep 17 00:00:00 2001 From: Tomas Reimers Date: Mon, 24 Jul 2017 01:07:30 -0700 Subject: [PATCH] Add docs for onMomentumScrollBegin Summary: Closes https://github.com/facebook/react-native/pull/15158 Differential Revision: D5479401 Pulled By: shergin fbshipit-source-id: d4864e1630a36deb1a227c1b6242255ac1f788e6 --- Libraries/Components/ScrollView/ScrollView.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Libraries/Components/ScrollView/ScrollView.js b/Libraries/Components/ScrollView/ScrollView.js index b4bc11ed6..e4e677f00 100644 --- a/Libraries/Components/ScrollView/ScrollView.js +++ b/Libraries/Components/ScrollView/ScrollView.js @@ -235,6 +235,10 @@ const ScrollView = createReactClass({ * @platform ios */ minimumZoomScale: PropTypes.number, + /** + * Called when the momentum scroll starts (scroll which occurs as the ScrollView glides to a stop). + */ + onMomentumScrollBegin: PropTypes.func, /** * Called when the momentum scroll ends (scroll which occurs as the ScrollView glides to a stop). */