waterui_controls/lib.rs
1//! `WaterUI` Controls Components
2//! This crate provides a set of common UI controls for building user interfaces with `WaterUI`.
3//!
4
5#![no_std]
6extern crate alloc;
7
8pub mod slider;
9
10pub use slider::Slider;
11pub mod text_field;
12pub use text_field::{TextField, field};
13pub mod toggle;
14pub use toggle::{Toggle, toggle};
15
16pub mod stepper;
17pub use stepper::{Stepper, stepper};
18
19/// Button component and related utilities.
20pub mod button;
21pub use button::{Button, ButtonStyle, button};
22/// Text editor component.
23pub mod text_editor;