textual/docs/examples/widgets/link.py
2024-10-13 18:44:33 +01:00

23 lines
435 B
Python

from textual.app import App, ComposeResult
from textual.widgets import Link
class LabelApp(App):
AUTO_FOCUS = None
CSS = """
Screen {
align: center middle;
}
"""
def compose(self) -> ComposeResult:
yield Link(
"Go to textualize.io",
url="https://textualize.io",
tooltip="Click me",
)
if __name__ == "__main__":
app = LabelApp()
app.run()