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
//! # appcui
//!
//! `appcui` is a cross-platform TUI (**T**ext **U**ser **I**nterface / **T**erminal **U**ser **I**nterface) / CUI (**C**onsole **U**ser **I**nterface) framework designed to allow quick creation TUI/CUI based applications.
//! AppCUI has a lot of out-of-the-box controls, and can also provide quick macros to create custom controls. The list of current supported controls are:
//! * Accordion
//! * Button
//! * CheckBox
//! * ComboBox
//! * Canvas
//! * DatePicker
//! * DropDownList
//! * HLine
//! * HSplitter
//! * ImageViewer
//! * Label
//! * ListBox
//! * Menu
//! * Markdown
//! * Panel
//! * ProgressBar
//! * RadioButton
//! * Tab
//! * TextBox
//! * VLine
//! * Window
//!   and many more.

pub mod dialogs;
pub mod graphics;
pub mod input;
pub mod prelude;
pub mod system;
pub mod backend;
pub mod ui;
mod utils;