uzor 1.2.2

Core UI engine — geometry, interaction, input state
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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 mod helpers;

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