From 9066feefb9de4cba38da8d50e17bc57859445958 Mon Sep 17 00:00:00 2001
From: Website Deployment Script
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.
Fires at most once per frame during scrolling. The frequency of the
-events can be controlled using the scrollEventThrottle prop.
A RefreshControl component, used to provide pull-to-refresh
+events can be controlled using the scrollEventThrottle prop.
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.
A RefreshControl component, used to provide pull-to-refresh functionality for the ScrollView.
See RefreshControl.
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.
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.
The maximum allowed zoom scale. The default value is 1.0.
The minimum allowed zoom scale. The default value is 1.0.
DeprecatedUse the refreshControl prop instead.
Called when a scrolling animation ends.
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.
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.
The maximum allowed zoom scale. The default value is 1.0.
The minimum allowed zoom scale. The default value is 1.0.
DeprecatedUse the refreshControl prop instead.
Called when a scrolling animation ends.
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.