Horizontal stack of up to 128 Views in a tuple. Each item can be a different view type.
(children: VT)
| 338 | |
| 339 | /// Horizontal stack of up to 128 Views in a tuple. Each item can be a different view type. |
| 340 | pub fn hstack<VT: ViewTuple + 'static>(children: VT) -> Stack<VT, HorizontalDirection> { |
| 341 | Stack::<VT, HorizontalDirection>::new(children) |
| 342 | } |
| 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> { |
no outgoing calls