MCPcopy Create free account
hub / github.com/NV404/gova / VStack

Function VStack

layout.go:33–35  ·  view source on GitHub ↗
(children ...any)

Source from the content-addressed store, hash-verified

31)
32
33func VStack(children ...any) *viewNode {
34 return stackNode(viewKindVStack, children)
35}
36
37func HStack(children ...any) *viewNode {
38 return stackNode(viewKindHStack, children)

Calls 1

stackNodeFunction · 0.85