Split the layout in to a column (layouts stacked on top of each other). Args: *layouts (Layout): Positional arguments should be (sub) Layout instances.
(self, *layouts: Union["Layout", RenderableType])
| 305 | self.split(*layouts, splitter="row") |
| 306 | |
| 307 | def split_column(self, *layouts: Union["Layout", RenderableType]) -> None: |
| 308 | """Split the layout in to a column (layouts stacked on top of each other). |
| 309 | |
| 310 | Args: |
| 311 | *layouts (Layout): Positional arguments should be (sub) Layout instances. |
| 312 | """ |
| 313 | self.split(*layouts, splitter="column") |
| 314 | |
| 315 | def unsplit(self) -> None: |
| 316 | """Reset splits to initial state.""" |