HStack
public struct HStack : ViewA view that arranges its children in a horizontal line.
 same as the flex-direction: row in flexbox layout.
     HStack {
         Text("1")
         Text("2")
         Text("3")
     }
- 
                  
                  The node behind the HStack. DeclarationSwift public var node: ArgoKitNode? { get }
- 
                  
                  Initializer DeclarationSwift public init()
- 
                  
                  Initializer DeclarationSwift public init(@ArgoKitViewBuilder _ builder: @escaping () -> View)ParametersbuilderA view builder that creates the content of this stack. 
 HStack Structure Reference
      HStack Structure Reference