19 lines
560 B
Python
19 lines
560 B
Python
from textual.app import App, ComposeResult
|
|
from textual.widgets import Static
|
|
|
|
|
|
class GridLayoutExample(App):
|
|
CSS_PATH = "grid_layout5_col_span.tcss"
|
|
|
|
def compose(self) -> ComposeResult:
|
|
yield Static("One", classes="box")
|
|
yield Static("Two [b](column-span: 2)", classes="box", id="two")
|
|
yield Static("Three", classes="box")
|
|
yield Static("Four", classes="box")
|
|
yield Static("Five", classes="box")
|
|
yield Static("Six", classes="box")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = GridLayoutExample()
|
|
app.run()
|