Files
textual/docs/examples/styles/layout.py
Rodrigo Girão Serrão 5ee0ebfef4 Rename CSS files to TCSS.
Related issue: #3137.
2023-08-22 13:21:17 +01:00

23 lines
504 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.tcss")