This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.
VStack
A SwiftUI VStack component for vertical layouts.
iOS
tvOS
Included in Expo Go
For cross-platform usage, see the universal
Column— it renders the appropriate native component per platform.
Expo UI VStack matches the official SwiftUI VStack API and arranges its children vertically.


Installation
Terminal
If you are installing this in an existing React Native app, make sure to install expo in your project.
Usage
Basic vertical stack
BasicVStackExample.tsx
With alignment
The alignment prop controls horizontal alignment of children. Available options are: leading, center, and trailing.
VStackAlignmentExample.tsx
API
import { VStack } from '@expo/ui/swift-ui';
Component
Type: React.Element<VStackProps>