Files
textual/sandbox/will/tree.py
2022-08-11 13:31:51 +01:00

23 lines
356 B
Python

from textual.app import App
from textual.layout import Container
from textual.widgets import DirectoryTree
class TreeApp(App):
CSS = """
Screen {
overflow: auto;
}
"""
def compose(self):
tree = DirectoryTree("~/projects")
yield Container(tree)
app = TreeApp()
if __name__ == "__main__":
app.run()