Files
textual/docs/examples/light_dark.py
2022-06-02 17:20:03 +01:00

21 lines
355 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
event.button.label = "Lights ON" if self.dark else "Lights OFF"