13 lines
363 B
Python
13 lines
363 B
Python
from textual.app import App, ComposeResult
|
|
from textual.screen import Screen
|
|
from textual.widgets import Header, Footer, Placeholder, Label
|
|
|
|
class HelpScreen(Screen):
|
|
def __init__(self):
|
|
super().__init__()
|
|
context = self.app.getContext()
|
|
def compose(self) -> ComposeResult:
|
|
yield Placeholder("Help Screen")
|
|
yield Footer()
|
|
|