Lists are now single-column

This commit is contained in:
Sasha Koshka
2023-04-20 14:06:00 -04:00
parent 4fe778c095
commit eaee284aaf
3 changed files with 13 additions and 64 deletions

View File

@@ -53,7 +53,6 @@ func run () {
}
list := elements.NewList (
1,
makePage("button", func () { turnPage(button) }),
makePage("mouse", func () { turnPage(mouse) }),
makePage("input", func () { turnPage(input) }),

View File

@@ -19,7 +19,6 @@ func run () {
disconnectedContainer := elements.NewHBox(elements.SpaceMargin)
list := elements.NewList (
2,
elements.NewCell(elements.NewCheckbox("Item 0", true)),
elements.NewCell(elements.NewCheckbox("Item 1", false)),
elements.NewCell(elements.NewCheckbox("Item 2", false)),