flux-tui 0.4.2

Fast and lightweight Terminal UI drawing library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Flux TUI is a library which tries to unify both rendering Terminal UIs and event handling
//! Main features:
//! - Hierachical reference counted structure
//! - Events get automatically delegated to the focused child and if unhandled bubble up
//! - Premade existing implementations of well-known components (still getting improved tho)
//! - Light-weight and relies on only few dependencies

pub mod canvas;
pub mod common;
pub mod components;
mod framebuffer;
pub mod misc;
pub mod tui;
pub mod window;