this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add installation step

authored by

Dakota J. Keeler and committed by
Tim Culverhouse
ae71b654 c49abb48

+16
+16
README.md
··· 47 47 provided, and custom widgets are easy to build. This API is most likely what you 48 48 want to use for typical TUI applications. 49 49 50 + ### Add libvaxis to your project 51 + 52 + ```console 53 + zig fetch --save git+https://github.com/rockorager/libvaxis.git 54 + ``` 55 + Add this to your build.zig 56 + 57 + ```zig 58 + const vaxis = b.dependency("vaxis", .{ 59 + .target = target, 60 + .optimize = optimize, 61 + }); 62 + 63 + exe.root_module.addImport("vaxis", vaxis.module("vaxis")); 64 + ``` 65 + 50 66 ### vxfw (Vaxis framework) 51 67 52 68 Let's build a simple button counter application. This example can be run using