mirror of
https://git.0x0.st/mia/0x0.git
synced 2026-01-09 03:51:54 +03:00
10 lines
191 B
Python
10 lines
191 B
Python
from textual.widgets import Static
|
|
|
|
|
|
class Notification(Static):
|
|
def on_mount(self) -> None:
|
|
self.set_timer(3, self.remove)
|
|
|
|
def on_click(self) -> None:
|
|
self.remove()
|