diff --git a/docs/scrollview.html b/docs/scrollview.html index 766302ef6c5..8d928743bd8 100644 --- a/docs/scrollview.html +++ b/docs/scrollview.html @@ -61,7 +61,14 @@ The default value is zero, which means the scroll event will be sent only once each time the view is scrolled.

iosscrollIndicatorInsets {top: number, left: number, bottom: number, right: number} #

The amount by which the scroll view indicators are inset from the edges of the scroll view. This should normally be set to the same value as the contentInset. Defaults to {0, 0, 0, 0}.

iosscrollsToTop bool #

When true, the scroll view scrolls to top when the status bar is tapped. -The default value is true.

iosstickyHeaderIndices [number] #

An array of child indices determining which children get docked to the +The default value is true.

iossnapToAlignment enum('start', "center", 'end') #

When snapToInterval is set, snapToAlignment will define the relationship +of the the snapping to the scroll view. + - start (the default) will align the snap at the left (horizontal) or top (vertical) + - center will align the snap in the center + - end will align the snap at the right (horizontal) or bottom (vertical)

iossnapToInterval number #

When set, causes the scroll view to stop at multiples of the value of +snapToInterval. This can be used for paginating through children +that have lengths smaller than the scroll view. Used in combination +with snapToAlignment.

iosstickyHeaderIndices [number] #

An array of child indices determining which children get docked to the top of the screen when scrolling. For example, passing stickyHeaderIndices={[0]} will cause the first child to be fixed to the top of the scroll view. This property is not supported in conjunction