Files
textual/docs/examples/styles/grid_columns.py
Rodrigo Girão Serrão da51877941 Add example for grid columns.
2022-12-19 17:50:13 +00:00

23 lines
502 B
Python

from textual.app import App
from textual.containers import Grid
from textual.widgets import Label
class MyApp(App):
def compose(self):
yield Grid(
Label("1fr"),
Label("width = 16"),
Label("2fr"),
Label("1fr"),
Label("width = 16"),
Label("1fr"),
Label("width = 16"),
Label("2fr"),
Label("1fr"),
Label("width = 16"),
)
app = MyApp(css_path="grid_columns.css")