rosace-layout 0.1.0

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

pub mod aspect_ratio;
pub mod flex;
pub mod grid;
pub mod wrap;