From d13855607f942e24a5d34fc423ef351276f92f1a Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Mon, 24 Jul 2017 08:49:53 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/scrollview.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releases/next/docs/scrollview.html b/releases/next/docs/scrollview.html index de827f6bdb5..f367f7815c2 100644 --- a/releases/next/docs/scrollview.html +++ b/releases/next/docs/scrollview.html @@ -33,7 +33,7 @@ is up dismisses the keyboard. When this happens, children won't receive the catch taps, but children of the scroll view can catch taps.
  • 'handled', the keyboard will not dismiss automatically when the tap was handled by a children, (or captured by an ancestor).
  • false, deprecated, use 'never' instead
  • true, deprecated, use 'always' instead
  • onContentSizeChange?: function #

    Called when scrollable content view of the ScrollView changes.

    Handler function is passed the content width and content height as parameters: (contentWidth, contentHeight)

    It's implemented using onLayout handler attached to the content container -which this ScrollView renders.

    onMomentumScrollEnd?: function #

    Called when the momentum scroll ends (scroll which occurs as the ScrollView glides to a stop).

    onScroll?: function #

    Fires at most once per frame during scrolling. The frequency of the +which this ScrollView renders.

    onMomentumScrollBegin?: function #

    Called when the momentum scroll starts (scroll which occurs as the ScrollView glides to a stop).

    onMomentumScrollEnd?: function #

    Called when the momentum scroll ends (scroll which occurs as the ScrollView glides to a stop).

    onScroll?: function #

    Fires at most once per frame during scrolling. The frequency of the events can be controlled using the scrollEventThrottle prop.

    pagingEnabled?: bool #

    When true, the scroll view stops on multiples of the scroll view's size when scrolling. This can be used for horizontal pagination. The default value is false.

    Note: Vertical pagination is not supported on Android.

    refreshControl?: element #

    A RefreshControl component, used to provide pull-to-refresh