textual/docs/examples/app/widgets04.py
Will McGugan 94279ae1f9 docs fix
2023-04-07 11:35:59 +01:00

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()