13 lines
281 B
Python
13 lines
281 B
Python
from textual.app import App
|
|
from textual.widgets import Button, Welcome
|
|
|
|
|
|
class WelcomeApp(App):
|
|
async def on_key(self) -> None:
|
|
await self.mount(Welcome())
|
|
self.query_one(Button).label = "YES!"
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = WelcomeApp()
|
|
app.run()
|