diff --git a/releases/next/docs/scrollview.html b/releases/next/docs/scrollview.html index a1dba63ea0d..08a1a8c7fda 100644 --- a/releases/next/docs/scrollview.html +++ b/releases/next/docs/scrollview.html @@ -70,7 +70,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.

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.

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. @@ -92,7 +92,7 @@ with snapToAlignment.

ioszoomScale number #

The current scale of the scroll view content. The default value is 1.0.

Methods #

endRefreshing() #

Deprecated. Use RefreshControl instead.

scrollTo(y: number | { x?: number, y?: number, animated?: boolean }, x: number, animated: boolean) #

Scrolls to a given x, y offset, either immediately or with a smooth animation.

Syntax:

scrollTo(options: {x: number = 0; y: number = 0; animated: boolean = true})

Note: The weird argument signature is due to the fact that, for historical reasons, +with horizontal={true}.

ioszoomScale number #

The current scale of the scroll view content. The default value is 1.0.

Methods #

scrollTo(y: number | { x?: number, y?: number, animated?: boolean }, x: number, animated: boolean) #

Scrolls to a given x, y offset, either immediately or with a smooth animation.

Syntax:

scrollTo(options: {x: number = 0; y: number = 0; animated: boolean = true})

Note: The weird argument signature is due to the fact that, for historical reasons, the function also accepts separate arguments as as alternative to the options object. This is deprecated due to ambiguity (y before x), and SHOULD NOT BE USED.

scrollWithoutAnimationTo(y, x) #

Deprecated, do not use.

Examples #

Edit on GitHub
'use strict';