textual/docs/examples/styles/background.py
Rodrigo Girão Serrão a1b9d4b2c5 Fix examples.
2023-01-09 16:11:45 +00:00

12 lines
300 B
Python

from textual.app import App
from textual.widgets import Label
class BackgroundApp(App):
def compose(self):
yield Label("Widget 1", id="static1")
yield Label("Widget 2", id="static2")
yield Label("Widget 3", id="static3")
app = BackgroundApp(css_path="background.css")