Vertical stack of up to 128 Views in a tuple. Each item can be a different view type.
(children: VT)
| 343 | |
| 344 | /// Vertical stack of up to 128 Views in a tuple. Each item can be a different view type. |
| 345 | pub 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. |
| 350 | pub fn zstack<VT: ViewTuple + 'static>(children: VT) -> Stack<VT, ZDirection> { |
no outgoing calls