SwiftUI: Layout & Interfaces

Nov 18 2021 · Swift 5.5, iOS 15, Xcode 13

Part 2: Aligning Views

10. Stack Alignment

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 09. Introduction Next episode: 11. Challenge: Align Nested Stacks

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Notes: 10. Stack Alignment

This course was originally recorded in 2019. It has been reviewed and all content and materials updated as of October 2021.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

If you’ve gone through our iOS and Swift for Beginners Learning Path up to this point, you’ll have gotten somewhat familiar with Stacks, already.

    VStack {
      Text("Hello, World!")
    }
    VStack {
      Image("Cake VStack")
        .resizable()
      Text("Hello, Layout!")
        .resizable()
        .scaledToFit()
      Text("Hello, Layout!")
      Text("Hello, Layout!")
      Image("Cake VStack")
        .resizable()
        .scaledToFit()
    }
Image("Pancake VStack")
VStack {
VStack {
HStack {
HStack(alignment: .firstTextBaseline) {
Text("Hello, \nLayout\n!")