This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.
ScrollView
A SwiftUI ScrollView component for scrollable content.
iOS
tvOS
Expo UI ScrollView matches the official SwiftUI ScrollView API and provides a scrollable container for its children.
Installation
Terminal
If you are installing this in an existing React Native app, make sure to install expo in your project.
Usage
Basic vertical scroll view
A simple vertically scrollable list of text items.
ScrollViewVerticalExample.tsx
Horizontal scroll view
Use the axes prop to scroll horizontally.
ScrollViewHorizontalExample.tsx
Hidden scroll indicators
Set showsIndicators to false to hide the scroll bars.
ScrollViewHiddenIndicatorsExample.tsx
API
import { ScrollView } from '@expo/ui/swift-ui';
Component
Type: React.Element<ScrollViewProps>