Split the layout in to a row (layouts side by side). Args: *layouts (Layout): Positional arguments should be (sub) Layout instances.
(self, *layouts: Union["Layout", RenderableType])
| 297 | self._children.extend(_layouts) |
| 298 | |
| 299 | def split_row(self, *layouts: Union["Layout", RenderableType]) -> None: |
| 300 | """Split the layout in to a row (layouts side by side). |
| 301 | |
| 302 | Args: |
| 303 | *layouts (Layout): Positional arguments should be (sub) Layout instances. |
| 304 | """ |
| 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). |