[WIP] MOC for tui

This commit is contained in:
jpk 2023-05-18 19:24:29 +02:00
parent f9505c2cde
commit 42afd9dc65
1 changed files with 13 additions and 0 deletions

13
blatted/tui/app.py Normal file
View File

@ -0,0 +1,13 @@
from textual.app import App, ComposeResult
from textual.containers import Container
from textual.widgets import Header, Footer
class BlattedApp(App):
CSS_PATH = "blatted.css"
SCREENS = { }
def compose(self) -> ComposeResult:
yield Header()
yield Container()
yield Footer()