stack

Function stack 

Source
pub fn stack<VT: ViewTuple + 'static>(children: VT) -> Stack
๐Ÿ‘ŽDeprecated since 0.2.0: Use Stack::new() instead
Expand description

A basic stack that is built from a tuple of views which remains static and always contains the same elements in the same order.

The children of a stack can still get reactive updates. See also v_stack and h_stack.

ยงExample

use floem::views::*;
stack((
   text("first element"),
    stack((
       text("new stack"),
       empty(),
    )),
));