Skip to main content

rosace_layout/widgets/
mod.rs

1//! Layout math for ROSACE (D095).
2//!
3//! The element-based widget structs were removed — `rosace-widgets::tree`
4//! is the canonical widget set. This crate keeps the pure algorithms:
5//! flex (layout_column/layout_row), grid, wrap, aspect_ratio.
6
7pub mod aspect_ratio;
8pub mod flex;
9pub mod grid;
10pub mod wrap;