From 9066feefb9de4cba38da8d50e17bc57859445958 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Thu, 5 May 2016 11:58:53 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/scrollview.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/releases/next/docs/scrollview.html b/releases/next/docs/scrollview.html index b7d121385fd..c8469b4d810 100644 --- a/releases/next/docs/scrollview.html +++ b/releases/next/docs/scrollview.html @@ -27,7 +27,9 @@ is up dismisses the keyboard. When true, the scroll view will not catch taps, and the keyboard will not dismiss automatically. The default value is false.

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.

onScroll function #

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

refreshControl element #

A RefreshControl component, used to provide pull-to-refresh +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.

refreshControl element #

A RefreshControl component, used to provide pull-to-refresh functionality for the ScrollView.

See RefreshControl.

removeClippedSubviews bool #

Experimental: When true, offscreen child views (whose overflow value is hidden) are removed from their native backing superview when offscreen. This can improve scrolling performance on long lists. The default value is @@ -65,9 +67,7 @@ for UIScrollViewDecelerationRateNormal and scrolling while dragging. The default value is false.

iosindicatorStyle enum('default', 'black', 'white') #

The style of the scroll indicators. - default (the default), same as black. - black, scroll indicator is black. This style is good against a white content background. - - white, scroll indicator is white. This style is good against a black content background.

iosmaximumZoomScale number #

The maximum allowed zoom scale. The default value is 1.0.

iosminimumZoomScale number #

The minimum allowed zoom scale. The default value is 1.0.

iosonRefreshStart function #

Deprecated

Use the refreshControl prop instead.

iosonScrollAnimationEnd function #

Called when a scrolling animation ends.

iospagingEnabled 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.

iosscrollEventThrottle number #

This controls how often the scroll event will be fired while scrolling + - white, scroll indicator is white. This style is good against a black content background.

iosmaximumZoomScale number #

The maximum allowed zoom scale. The default value is 1.0.

iosminimumZoomScale number #

The minimum allowed zoom scale. The default value is 1.0.

iosonRefreshStart function #

Deprecated

Use the refreshControl prop instead.

iosonScrollAnimationEnd function #

Called when a scrolling animation ends.

iosscrollEventThrottle number #

This controls how often the scroll event will be fired while scrolling (as a time interval in ms). A lower number yields better accuracy for code that is tracking the scroll position, but can lead to scroll performance problems due to the volume of information being send over the bridge.