dracon-terminal-engine 0.1.10

A terminal application framework for Rust with composable widgets, z-indexed compositor, themes, and TextEditor
Documentation
/// Button widget module
pub mod button;
/// Component widget module
pub mod component;
/// Context menu widget module
pub mod context_menu;
/// Editor widget module
pub mod editor;
/// Hotkey widget module
pub mod hotkey;
/// Input widget module
pub mod input;
/// Panel widget module
pub mod panel;

pub use component::Component;

pub use button::Button;
pub use context_menu::ContextMenuAction;
pub use editor::TextEditor;
pub use hotkey::HotkeyHint;
pub use input::TextInput;