Files
ffx/src/ffx/help_screen.py
2024-11-17 11:07:25 +01:00

14 lines
344 B
Python

from textual.app import ComposeResult
from textual.screen import Screen
from textual.widgets import Footer, Placeholder
class HelpScreen(Screen):
def __init__(self):
super().__init__()
context = self.app.getContext()
def compose(self) -> ComposeResult:
yield Placeholder("Help Screen")
yield Footer()