Skip to main content

uzor_core/layout/
mod.rs

1//! Layout engine for uzor
2//!
3//! Provides a flexible layout system based on flexbox concepts.
4//! - LayoutNode: The structural building block
5//! - LayoutStyle: Styling properties (size, margin, padding, flex)
6//! - LayoutTree: Computed layout results
7
8pub mod tree;
9pub mod types;
10
11pub use tree::*;
12pub use types::*;