Files
textual/docs/examples/light_dark.py
Will McGugan 99ccbc5eb8 moar docs
2022-07-30 22:33:55 +01:00

22 lines
375 B
Python

from textual.app import App
from textual.widgets import Button
class ButtonApp(App):
CSS = """
Button {
width: 100%;
}
"""
def compose(self):
yield Button("Lights off")
def handle_pressed(self, event):
self.dark = not self.dark
self.bell()
event.button.label = "Lights ON" if self.dark else "Lights OFF"