Caution
build.zig needs the test project to do anything
basic ui framework thing made with zig
using zglfw and zopengl
test/example project:
test/test.zig
run with./build-run
widgets are created using builder functions
container()
.bounds(400, 225)
.color(colors.RED)
.child(
container()
.bounds(20, 20)
.color(colors.rgb(0, 1.0, 0))
.build()
)
.build();