12 lines
300 B
Python
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")
|