How can you create a horizontal stack inside a vertical stack in SwiftUI?
AZStack { VStack { Text("Top") Text("Bottom") } HStack { Text("Left") Text("Right") } }
BVStack { Text("Top") HStack { Text("Left") Text("Right") } Text("Bottom") }
CHStack { VStack { Text("Top") Text("Bottom") } Text("Left") Text("Right") }
DVStack { HStack(Text("Left"), Text("Right")) Text("Top") Text("Bottom") }