textual/docs/examples/styles/layout.py
2022-12-22 14:05:17 +00:00

22 lines
503 B
Python

from textual.app import App
from textual.containers import Container
from textual.widgets import Label
class LayoutApp(App):
def compose(self):
yield Container(
Label("Layout"),
Label("Is"),
Label("Vertical"),
id="vertical-layout",
)
yield Container(
Label("Layout"),
Label("Is"),
Label("Horizontal"),
id="horizontal-layout",
)
app = LayoutApp(css_path="layout.css")