Files
textual/docs/examples/styles/border.py
Rodrigo Girão Serrão 3a83c26779 Replace statics with labels.
2022-12-15 16:14:56 +00:00

13 lines
330 B
Python

from textual.app import App
from textual.widgets import Label
class BorderApp(App):
def compose(self):
yield Label("My border is solid red", id="label1")
yield Label("My border is dashed green", id="label2")
yield Label("My border is tall blue", id="label3")
app = BorderApp(css_path="border.css")