mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
19 lines
456 B
Python
19 lines
456 B
Python
from textual.app import App, ComposeResult
|
|
from textual.widgets import Tree
|
|
|
|
|
|
class TreeApp(App):
|
|
def compose(self) -> ComposeResult:
|
|
tree: Tree = Tree("Dune")
|
|
tree.root.expand()
|
|
characters = tree.root.add("Characters", expand=True)
|
|
characters.add_leaf("Paul")
|
|
characters.add_leaf("Jessica")
|
|
characters.add_leaf("Channi")
|
|
yield tree
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = TreeApp()
|
|
app.run()
|