Containers are no longer in their own dir because why were they

This commit is contained in:
2023-04-16 17:30:13 -04:00
parent a7de6c7f3b
commit 775390e884
23 changed files with 29 additions and 416 deletions

View File

@@ -3,7 +3,6 @@ package main
import "git.tebibyte.media/sashakoshka/tomo"
import "git.tebibyte.media/sashakoshka/tomo/elements"
import "git.tebibyte.media/sashakoshka/tomo/elements/testing"
import "git.tebibyte.media/sashakoshka/tomo/elements/containers"
import _ "git.tebibyte.media/sashakoshka/tomo/backends/all"
func main () {
@@ -14,7 +13,7 @@ func run () {
window, _ := tomo.NewWindow(tomo.Bounds(0, 0, 128, 128))
window.SetTitle("vertical stack")
container := containers.NewVBox(true, true)
container := elements.NewVBox(true, true)
label := elements.NewLabel("it is a label hehe", true)
button := elements.NewButton("drawing pad")