Dummy app with a few widgets.
| 23 | """Run a dummy app.""" |
| 24 | |
| 25 | class DummyApp(App): |
| 26 | """Dummy app with a few widgets.""" |
| 27 | |
| 28 | def compose(self) -> ComposeResult: |
| 29 | yield Header() |
| 30 | with Vertical(): |
| 31 | yield Label("foo") |
| 32 | yield Label("bar") |
| 33 | yield Footer() |
| 34 | |
| 35 | app = DummyApp() |
| 36 |