Files
textual/sandbox/will/tree.py
Will McGugan e555b8512f Default css
2022-09-02 09:56:04 +01:00

23 lines
364 B
Python

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