This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/examples/spacer/main.go

31 lines
657 B
Go

package main
import "tomo"
import "tomo/nasin"
import "tomo/elements"
func main () {
nasin.Run(Application { })
}
type Application struct { }
func (Application) Init () error {
window, err := nasin.NewWindow(tomo.Bounds(0, 0, 0, 0))
if err != nil { return err }
window.SetTitle("Spaced Out")
container := elements.NewVBox (
elements.SpaceBoth,
elements.NewLabel("This is at the top"),
elements.NewLine(),
elements.NewLabel("This is in the middle"))
container.AdoptExpand(elements.NewSpacer())
container.Adopt(elements.NewLabel("This is at the bottom"))
window.Adopt(container)
window.OnClose(nasin.Stop)
window.Show()
return nil
}