Files
textual/docs/examples/app/question02.py
2022-09-05 21:30:29 +01:00

19 lines
540 B
Python

from textual.app import App, ComposeResult
from textual.widgets import Static, Button
class QuestionApp(App[str]):
def compose(self) -> ComposeResult:
yield Static("Do you love Textual?", id="question")
yield Button("Yes", id="yes", variant="primary")
yield Button("No", id="no", variant="error")
def on_button_pressed(self, event: Button.Pressed) -> None:
self.exit(event.button.id)
app = QuestionApp(css_path="question02.css")
if __name__ == "__main__":
reply = app.run()
print(reply)