Search code examples
iosswiftuivstackhstack

SwiftUI - What is ZStack and what is its difference with VStack?


I'm new to SwiftUI, sometimes instructor uses VStack and sometimes ZStack not able to understand the difference ...


Solution

  • VStack: Stacks the views in them vertically.

    ZStack: Stacks the views in them over each other.