ScrollView#showsHorizontalScrollIndicator

showsHorizontalScrollIndicator bool When true, shows a horizontal scroll indicator.

ScrollView#scrollsToTop

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

ScrollView#scrollPerfTag

androidscrollPerfTag string Tag used to log scroll performance on this scroll view. Will force momentum events to be turned on (see sendMomentumEvents). This doesn't do anything out of the box and you need to implement a custom native FpsListener for it to be useful.

ScrollView#scrollWithoutAnimationTo()

scrollWithoutAnimationTo(y, x) Deprecated, do not use.

ScrollView#scrollIndicatorInsets

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

ScrollView#scrollEventThrottle

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. You will not notice a difference between values set between 1-16 as the JS run loop is synced to the screen refresh rate. If you do not need precise scroll position tracking, set

ScrollView#scrollEnabled

scrollEnabled bool When false, the content does not scroll. The default value is true.

ScrollView#refreshControl

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

ScrollView#removeClippedSubviews

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

ScrollView#onScroll

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