···4747provided, and custom widgets are easy to build. This API is most likely what you
4848want to use for typical TUI applications.
49495050+### Add libvaxis to your project
5151+5252+```console
5353+zig fetch --save git+https://github.com/rockorager/libvaxis.git
5454+```
5555+Add this to your build.zig
5656+5757+```zig
5858+ const vaxis = b.dependency("vaxis", .{
5959+ .target = target,
6060+ .optimize = optimize,
6161+ });
6262+6363+ exe.root_module.addImport("vaxis", vaxis.module("vaxis"));
6464+```
6565+5066### vxfw (Vaxis framework)
51675268Let's build a simple button counter application. This example can be run using