pub fn v_stack_from_iter<V>(iterator: impl IntoIterator<Item = V>) -> Stackwhere
V: IntoView + 'static,👎Deprecated since 0.2.0: Use Stack::vertical_from_iter() instead
Expand description
Creates a stack from an iterator of views. It defaults to FlexDirection::Column. See also h_stack_from_iter.