uzor 1.0.20

Core UI engine — geometry, interaction, input state
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Layout engine for uzor
//!
//! Provides a flexible layout system based on flexbox concepts.
//! - LayoutNode: The structural building block
//! - LayoutStyle: Styling properties (size, margin, padding, flex)
//! - LayoutTree: Computed layout results

pub mod tree;
pub mod types;

pub use tree::*;
pub use types::*;