lv-tui 0.2.0

A reactive TUI framework for Rust, inspired by Textual and React
Documentation
//! Built-in widgets and layout containers.
//!
//! | Widget | Description |
//! |--------|-------------|
//! | [`Label`] | Styled text display. |
//! | [`Input`] | Single-line text input with cursor. |
//! | [`Column`] | Vertical layout container. |
//! | [`Row`] | Horizontal layout container. |
//! | [`Stack`] | Layered / z-order container. |
//! | [`Block`] | Border + padding wrapper with optional title. |
//! | [`Scroll`] | Scrollable content container. |
//! | [`Overlay`] | Modal dialog with background dimming. |
//! | [`Table`] | Data table with headers, selection, and keyboard nav. |
//! | [`Tabs`] | Tabbed container with title row and content switching. |

pub mod block;
pub mod checkbox;
pub mod column;
pub mod dialog;
pub mod input;
pub mod label;
pub mod overlay;
pub mod progressbar;
pub mod row;
pub mod scroll;
pub mod select;
pub mod splitpane;
pub mod stack;
pub mod table;
pub mod tabs;
pub mod virtuallist;

pub use block::Block;
pub use checkbox::{Checkbox, RadioGroup};
pub use column::Column;
pub use dialog::Dialog;
pub use input::Input;
pub use label::Label;
pub use overlay::Overlay;
pub use progressbar::ProgressBar;
pub use row::Row;
pub use scroll::Scroll;
pub use select::Select;
pub use splitpane::{SplitDirection, SplitPane};
pub use stack::Stack;
pub use table::{Table, TableColumn};
pub use tabs::Tabs;
pub use virtuallist::VirtualList;