BLACK FRIDAY: Save 50% on all my books and bundles! >>

How to create stacks using VStack and HStack

Paul Hudson    @twostraws   

Updated for Xcode 16.4

Our SwiftUI content views must contain one or more views, which is the layout we want them to show. When we want more than one view on screen at a time you’ll usually want to tell SwiftUI how to arrange them, and that’s where stacks come in.

Stacks – equivalent to UIStackView in UIKit – come in three forms: horizontal (HStack), vertical (VStack) and depth-based (ZStack), with the latter being used when you want to place child views so they overlap.

Let’s start with something simple. Here’s one text view:

Text("Hello, world!")

Download this as an Xcode project

The words “Hello, world!” on a plain background.

If we want to place another below, we can’t just create a second text view and hope for the best – SwiftUI doesn’t know how to arrange them.

Instead, we need to place it in a vertical stack so our text views are placed above each other:

VStack {
    Text("SwiftUI")
    Text("rocks")
}

Download this as an Xcode project

The text “SwiftUI” above the text “rocks”.

You’ll notice that the vertical stack is placed at the center of the screen, with the labels also being centered and having some automatic space between them.

If you wanted the labels side by side horizontally, replace VStack with HStack like this:

HStack {
    Text("SwiftUI")
    Text("rocks")
}

Download this as an Xcode project

The text “SwiftUI” beside the text “rocks”.

Save 50% in my Black Friday sale.

SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further for less! Get my all-new book Everything but the Code to make more money with apps, get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn Swift Testing, design patterns, and more.

Save 50% on all our books and bundles!

Similar solutions…

BUY OUR BOOKS
Buy Everything but the Code Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Interview Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code

Was this page useful? Let us know!

Average rating: 4.1/5

 
Unknown user

You are not logged in

Log in or create account