ioscontentInset {top: number, left: number, bottom: number, right: number} The amount by which the scroll view content is inset from the edges of the scroll view. Defaults to {top: 0, left: 0, bottom: 0, right: 0}.
ioscontentOffset PointPropType Used to manually set the starting scroll offset. The default value is {x: 0, y: 0}.
iosdecelerationRate enum('fast', 'normal'), number A floating-point number that determines how quickly the scroll view 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. - normal: 0.998 (the default) - fast: 0.99
iosdirectionalLockEnabled bool When true, the ScrollView will try to lock to only vertical or horizontal scrolling while dragging. The default value is false.
iosbouncesZoom bool When true, gestures can drive zoom past min/max and the zoom will animate to the min/max value at gesture end, otherwise the zoom will not exceed the limits.
ioscenterContent bool When true, the scroll view automatically centers the content when the content is smaller than the scroll view bounds; when the content is larger than the scroll view, this property has no effect. The default value is false.
ioscanCancelContentTouches bool When false, once tracking starts, won't try to drag if the touch moves. The default value is true.
iosbounces bool When true, the scroll view bounces when it reaches the end of the content if the content is larger then the scroll view along the axis of the scroll direction. When false, it disables all bouncing even if the alwaysBounce* props are true. The default value is true.
contentContainerStyle StyleSheetPropType(ViewStylePropTypes) These styles will be applied to the scroll view content container which wraps all of the child views. Example: return ( <ScrollView contentContainerStyle={styles.contentContainer}> </ScrollView> ); ... const styles = StyleSheet.create({ contentContainer: { paddingVertical: 20 } });
iosautomaticallyAdjustContentInsets bool Controls whether iOS should automatically adjust the content inset for scroll views that are placed behind a navigation bar or tab bar/ toolbar. The default value is true.
Page 28 of 64