vize_fresco 0.241.0

Fresco - Vue TUI framework (Terminal User Interface)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Layout engine module using taffy.
//!
//! Provides Flexbox-based layout calculation:
//! - Taffy integration for layout computation
//! - Flexbox style conversion
//! - Rectangle/area calculations

mod engine;
mod flex;
mod rect;

pub use engine::LayoutEngine;
pub use flex::{
    AlignContent, AlignItems, AlignSelf, Dimension, Display, Edges, FlexDirection, FlexStyle,
    FlexWrap, Gap, Inset, JustifyContent, LengthPercentageAuto, Overflow, Position,
};
pub use rect::Rect;