The ScrollView
component displays its content within a scrollable region. As the user performs scroll gestures, the visible portion of the content is updated accordingly. You can scroll vertically, horizontally, or in both directions using the axes
prop.
axes
property.<VStack>
or <HStack>
.You can apply the following view modifiers to configure scroll-related behavior.
scrollIndicator
Controls the visibility of scroll indicators.
ScrollScrollIndicatorVisibility
options:"automatic"
: Follows platform default behavior."visible"
: Indicators appear but may auto-hide based on OS behavior."hidden"
: Hidden unless overridden by system behavior."never"
: Never show indicators.With axis-specific visibility:
scrollDisabled
Enables or disables scrolling behavior entirely.
scrollClipDisabled
Controls whether the scroll view clips content that extends beyond its bounds.
scrollDismissesKeyboard
Determines how the scroll interaction affects the software keyboard.
"automatic"
: Default behavior based on context."immediately"
: Dismiss keyboard as soon as scrolling starts."interactively"
: Allow user to drag to dismiss keyboard."never"
: Scrolling will not dismiss the keyboard.defaultScrollAnchor
Defines which point in the content should be visible initially or stay anchored when content size changes.
KeywordPoint
values"top"
, "bottom"
, "leading"
, "trailing"
, "center"
, "topLeading"
, "bottomTrailing"
etc.AxisSet
Defines the scrollable directions for a scroll view.
scrollTargetLayout
Applies this modifier to layout containers such as LazyHStack, LazyVStack, HStack, or VStack that represent the main repeating content inside a ScrollView.
When set to true
, this modifier designates the associated layout container as a scroll target region within the ScrollView
. It allows the scroll behavior system to determine how scrolling should align to elements within the container.
scrollTargetBehavior
Defines how scrollable views behave when aligning content to scroll targets.
"paging"
: Scrolls one page at a time, aligned to the container’s dimensions."viewAligned"
: Scrolls to align views directly, based on view frames."viewAlignedLimitAutomatic"
: Limits scrolling in compact horizontal size classes, but allows full scrolling otherwise."viewAlignedLimitAlways"
: Always restricts scrolling to a limited number of items."viewAlignedLimitNever"
: Allows unrestricted scrolling without view-based limitations."viewAlignedLimitAlwaysByFew"
(iOS 18.0+): Limits scrolling to a small number of views per gesture, automatically determined."viewAlignedLimitAlwaysByOne"
(iOS 18.0+): Restricts each scroll gesture to advance exactly one view at a time.This modifier configures the scroll behavior, such as paging and alignment strategy, for views within a scrollable container.
scrollContentBackground
Specifies the visibility of the background for scrollable views, such as ScrollView
, within the current view context.
This modifier controls whether the default background behind scrollable content (typically a system-provided background) is shown, hidden, or determined automatically based on system behavior.
It is commonly used when customizing the appearance of scrollable views or when layering custom backgrounds behind scroll content.
'automatic'
The system decides whether the background should be visible based on the current context and platform conventions.
'hidden'
Hides the scroll view’s default background, allowing custom background layers or transparent effects.
'visible'
Forces the default scroll content background to be shown, even if a custom background is present.
This example removes the default background from the scroll view, making it fully transparent or allowing underlying views to show through.
Modifier / Prop | Description |
---|---|
axes |
Defines scroll direction (vertical , horizontal , or all ) |
scrollIndicator |
Controls scroll indicator visibility and supports axis-specific config |
scrollDisabled |
Disables scrolling entirely when set to true |
scrollClipDisabled |
Prevents clipping of content that overflows the scroll bounds |
scrollDismissesKeyboard |
Configures how scrolling interacts with the software keyboard |
defaultScrollAnchor |
Sets the initial or persistent scroll anchor point in the content |
scrollTargetLayout |
Marks a container (like LazyHStack ) as the scroll target for alignment |
scrollTargetBehavior |
Determines how content aligns and scrolls within the scroll view |
scrollContentBackground |
Sets the visibility of the scroll view’s default background |