* screen docs * Added push_screen_wait * words and test * overload typing * docstring * style tweak * ws * Update docs/guide/screens.md Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com> * Update docs/guide/screens.md Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com> * Update src/textual/app.py Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com> * merge fix * wording * wording [skipci] --------- Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com>
45 lines
1.1 KiB
Python
45 lines
1.1 KiB
Python
from textual import on, work
|
|
from textual.app import App, ComposeResult
|
|
from textual.screen import Screen
|
|
from textual.widgets import Button, Label
|
|
|
|
|
|
class QuestionScreen(Screen[bool]):
|
|
"""Screen with a parameter."""
|
|
|
|
def __init__(self, question: str) -> None:
|
|
self.question = question
|
|
super().__init__()
|
|
|
|
def compose(self) -> ComposeResult:
|
|
yield Label(self.question)
|
|
yield Button("Yes", id="yes", variant="success")
|
|
yield Button("No", id="no")
|
|
|
|
@on(Button.Pressed, "#yes")
|
|
def handle_yes(self) -> None:
|
|
self.dismiss(True) # (1)!
|
|
|
|
@on(Button.Pressed, "#no")
|
|
def handle_no(self) -> None:
|
|
self.dismiss(False) # (2)!
|
|
|
|
|
|
class QuestionsApp(App):
|
|
"""Demonstrates wait_for_dismiss"""
|
|
|
|
CSS_PATH = "questions01.tcss"
|
|
|
|
@work # (3)!
|
|
async def on_mount(self) -> None:
|
|
if await self.push_screen_wait( # (4)!
|
|
QuestionScreen("Do you like Textual?"),
|
|
):
|
|
self.notify("Good answer!")
|
|
else:
|
|
self.notify(":-(", severity="error")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = QuestionsApp()
|
|
app.run()
|