From c7e56b0e4d61126cd607f13e4748fe5b83fd64a7 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Mon, 7 Aug 2017 14:20:40 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/scrollview.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/releases/next/docs/scrollview.html b/releases/next/docs/scrollview.html index cc6fbf398fd..da393336438 100644 --- a/releases/next/docs/scrollview.html +++ b/releases/next/docs/scrollview.html @@ -86,7 +86,8 @@ decelerates after the user lifts their finger. You may also use string shortcuts "normal" and "fast" which match the underlying iOS settings for UIScrollViewDecelerationRateNormal and UIScrollViewDecelerationRateFast respectively.

iosdirectionalLockEnabled?: bool #

When true, the ScrollView will try to lock to only vertical or horizontal -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 light background.
  • 'white', scroll indicator is white. This style is good against a dark 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.

iosscrollEventThrottle?: number #

This controls how often the scroll event will be fired while scrolling +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 light background.
  • 'white', scroll indicator is white. This style is good against a dark 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.

iospinchGestureEnabled?: bool #

When true, ScrollView allows use of pinch gestures to zoom in and out. +The default value is true.

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.