Skip to main content

zero_tui/widgets/
mod.rs

1//! Widget library.
2//!
3//! `stat` is the honesty primitive — every number in the TUI
4//! passes through it. `statusbar`, `prompt`, `conversation`, and
5//! `pane` compose the M1 shell; verdict blocks, position-row
6//! widgets, calibration bars, and scar cards land later.
7
8pub mod calibration;
9pub mod conversation;
10pub mod live_stream;
11pub mod overlay;
12pub mod pane;
13pub mod picker;
14pub mod position_row;
15pub mod prompt;
16pub mod stat;
17pub mod statusbar;
18pub mod verdict;