fluor 0.0.3

First-principles GUI compositor library: center-origin RU coordinates, harmonic-mean span scaling, CPU softbuffer rendering, ARM-first.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Widget primitives — single-line textbox today, more to come (button, scroll, etc.). Each widget owns its visual + interaction state and renders into a pixel buffer via the shared paint + text infrastructure.
//!
//! Widgets are positioned in **pixel coordinates** for now. Once consumers are migrating, this will move to RU coords matching the rest of the layout.

pub mod blink;
pub mod button;
pub mod dropdown;
pub mod slider;
pub mod textbox;
pub use blink::BlinkTimer;
pub use button::Button;
pub use dropdown::Dropdown;
pub use slider::Slider;
pub use textbox::Textbox;