r3bl_tui 0.7.7

TUI library to build modern apps inspired by React, Elm, with Flexbox, CSS, editor component, emoji support, and more
Documentation
// Copyright (c) 2022-2025 R3BL LLC. Licensed under Apache License, Version 2.0.

// Attach source files.
pub mod flex_box;
pub mod flex_box_id;
pub mod layout_and_positioning_traits;
pub mod layout_error;
pub mod partial_flex_box;
pub mod props;
pub mod surface;

// Re-export the public items.
pub use flex_box::*;
pub use flex_box_id::*;
pub use layout_and_positioning_traits::*;
pub use layout_error::*;
pub use partial_flex_box::*;
pub use props::*;
pub use surface::*;

// Tests.
mod test_surface_2_col_complex;
mod test_surface_2_col_simple;