zenthra-widgets 0.1.2

Immediate-mode UI widgets (buttons, text fields, lists) for the Zenthra UI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// crates/zenthra-widgets/src/controls/mod.rs

pub mod checkbox;
pub mod button;
pub mod slider;
pub mod text_input;
pub mod toggle;
pub mod radio;
pub mod dropdown;
pub mod menu;

pub use checkbox::*;
pub use toggle::*;
pub use radio::*;
pub use dropdown::*;
pub use menu::*;