Files
tessesbigscreen/tmp/file.tcross
2026-05-03 18:32:46 -05:00

13 lines
194 B
Plaintext

func Layout()
{
const tb = TextBox();
return VGrid(
[
[Text("Hello, world"),0]
[tb,0],
[Button("My Button", (btn)=>{}),0]
]
);
}