mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
27 lines
598 B
Python
27 lines
598 B
Python
from textual.app import App, ComposeResult
|
|
from textual.widgets import Static
|
|
from textual import layout
|
|
|
|
from rich.text import Text
|
|
|
|
TEXT = Text.from_markup(" ".join(str(n) * 5 for n in range(10)))
|
|
|
|
|
|
class AutoApp(App):
|
|
def on_mount(self) -> None:
|
|
self.bind("t", "tree")
|
|
|
|
def compose(self) -> ComposeResult:
|
|
yield layout.Horizontal(
|
|
Static(TEXT, classes="test"), Static(TEXT, id="test", classes="test")
|
|
)
|
|
|
|
def action_tree(self):
|
|
self.log(self.screen.tree)
|
|
|
|
|
|
app = AutoApp(css_path="horizontal.css")
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|