Files
textual/sandbox/will/tree.py
Will McGugan d962dcd49c new align
2022-09-27 16:35:40 +01:00

17 lines
310 B
Python

from textual.app import App
from textual.containers import Container
from textual.widgets import DirectoryTree
class TreeApp(App):
def compose(self):
tree = DirectoryTree("~/projects")
yield Container(tree)
tree.focus()
app = TreeApp()
if __name__ == "__main__":
app.run()