MCPcopy Create free account
hub / github.com/audulus/rui / vstack

Function vstack

src/views/stack.rs:345–347  ·  view source on GitHub ↗

Vertical stack of up to 128 Views in a tuple. Each item can be a different view type.

(children: VT)

Source from the content-addressed store, hash-verified

343
344/// Vertical stack of up to 128 Views in a tuple. Each item can be a different view type.
345pub fn vstack<VT: ViewTuple + 'static>(children: VT) -> Stack<VT, VerticalDirection> {
346 Stack::<VT, VerticalDirection>::new(children)
347}
348
349/// Stack of up to 128 overlaid Views in a tuple. Each item can be a different view type.
350pub fn zstack<VT: ViewTuple + 'static>(children: VT) -> Stack<VT, ZDirection> {

Callers 15

test_cond_switchesFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
my_sliderFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_cond_switchesFunction · 0.68