I guess I’m making a post here as the old one in r/Zig got deleted.
I’ve been creating Capy since about two years.
One of the main differentiatiors between Capy and other projects is that it uses native widgets. This makes accessibility, shortcuts and other features much more consistent with the OS and what the user is accustomed to.
You can find the source code and usage instructions here:
(check the website too: https://capy-ui.org/)
Here’s some code
const capy = @import("capy");
const std = @import("std");
pub fn main() !void {
try capy.backend.init();
var window = try capy.Window.init();
try window.set(
capy.Column(.{ .spacing = 10 }, .{ // have 10px spacing between each column's element
capy.Row(.{ .spacing = 5 }, .{ // have 5px spacing between each row's element
capy.Button(.{ .label = "Save", .onclick = buttonClicked }),
capy.Button(.{ .label = "Run", .onclick = buttonClicked })
}),
// Expanded means the widget will take all the space it can
// in the parent container
capy.Expanded(
capy.TextArea(.{ .text = "Hello World!" })
)
})
);
window.resize(800, 600);
window.show();
capy.runEventLoop();
}
fn buttonClicked(button: *capy.Button_Impl) !void {
std.log.info("You clicked button with text {s}", .{button.getLabel()});
}