appcui 0.4.8

A feature-rich and cross-platform TUI/CUI framework for Rust, enabling modern terminal-based applications on Windows, Linux, and macOS. Includes built-in UI components like buttons, menus, list views, tree views, checkboxes, and more. Perfect for building fast and interactive CLI tools and text-based interfaces.
Documentation
pub mod events;
mod app_bar;
mod app_bar_item;
mod item_base;
mod menu_button;
mod toggle_button;
mod switch_button;
mod separator;
mod button;
mod label;
mod side;
mod item_status;
#[cfg(test)]
mod tests;


use self::app_bar_item::AppBarItem;
use self::item_base::ItemBase;
use self::item_status::ItemStatus;
pub use self::menu_button::MenuButton;
pub use self::separator::Separator;
pub use self::label::Label;
pub use self::button::Button;
pub use self::toggle_button::ToggleButton;
pub use self::switch_button::SwitchButton;
pub use self::switch_button::SwitchButtonSymbol;
pub use self::app_bar::AppBar;
pub use self::side::Side;