| from textual.app import App, ComposeResult | |
| from textual.widgets import Static | |
| class LayersExample(App): | |
| CSS_PATH = "layers.css" | |
| def compose(self) -> ComposeResult: | |
| yield Static("box1 (layer = above)", id="box1") | |
| yield Static("box2 (layer = below)", id="box2") | |
| if __name__ == "__main__": | |
| app = LayersExample() | |
| app.run() | |