923c81d7d2
- Added `Table.zig` under the `src/widgets` directory and `widgets.zig` module. - Created the `drawTable()` function to draw a Table to the provided parent Window based on the provided ArrayList. - Created the `TableContext` struct to manage state and attributes for the `drawTable()` function.
4 lines
210 B
Zig
4 lines
210 B
Zig
pub const border = @import("widgets/border.zig");
|
|
pub const alignment = @import("widgets/alignment.zig");
|
|
pub const TextInput = @import("widgets/TextInput.zig");
|
|
pub const Table = @import("widgets/Table.zig");
|