Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 869 Bytes

File metadata and controls

35 lines (24 loc) · 869 Bytes

ZigTUI

A TUI library for Zig, inspired by Ratatui. Works on Windows, Linux, and macOS.

ZigTUI Dashboard

Documentation

https://adxdits.github.io/zigtui/ full docs and guides.

Quick install

zig fetch --save git+https://github.com/adxdits/zigtui.git
// build.zig
const zigtui = b.dependency("zigtui", .{ .target = target, .optimize = optimize });
exe.root_module.addImport("zigtui", zigtui.module("zigtui"));

Examples

zig build run-dashboard      # System monitor demo
zig build run-kitty          # Image display demo
zig build run-themes         # Theme showcase
zig build run-mouse          # Mouse input demo
zig build run-widgets-demo   # Interactive showcase of all widgets

License

MIT see LICENSE