VStack
public struct VStack : ViewThe container that align children from top to bottom.
 same as the flex-direction: column in flexbox layout.
     VStack {
         Text("1")
         Text("2")
         Text("3")
     }
- 
                  
                  the node behind the VStack DeclarationSwift public var node: ArgoKitNode? { get }
- 
                  
                  Undocumented DeclarationSwift public init()
- 
                  
                  initalize the VStack with view builder. VStack { Text("1") Text("2") Text("3") }DeclarationSwift public init(@ArgoKitViewBuilder _ builder: @escaping () -> View)Parametersbuilderview builder. 
 VStack Structure Reference
      VStack Structure Reference