implementing UI for bottom controls

This commit is contained in:
2026-01-13 21:33:25 +11:00
parent f8f41212f3
commit 30835a506e
4 changed files with 62 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ from textual.widgets import Footer
from ui.widgets.sidebar import Sidebar
from ui.widgets.timeline import Timeline
from ui.widgets.project_settings import ProjectSettings
class AppUI(App):
@@ -13,4 +14,5 @@ class AppUI(App):
def compose(self) -> ComposeResult:
yield Sidebar()
yield Timeline()
yield ProjectSettings()
yield Footer()