add utility ui.

This commit is contained in:
2026-04-25 10:47:13 -04:00
parent ca84d91ba3
commit 66e69e4159
4 changed files with 139 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package main
import "cogentcore.org/core/core"
func main() {
b := core.NewBody()
core.NewButton(b).SetText("Hello, World!")
b.RunMainWindow()
}