feather-tui 4.1.0

A crate for building simple terminal-based user interfaces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// A UI component that serves as the header of a `Container`. 
pub(crate) mod header;
/// A UI component representing an interactive option in a `Container`. 
pub(crate) mod option;
/// A UI component representing a text element in a `Container`.
pub(crate) mod text;
/// A UI component that acts as a separator typically a horizontal line.
pub(crate) mod seperator;
/// A UI component use for navigating and selecting `Option` components.
pub(crate) mod selector;

pub use header::Header;
pub use option::Option;
pub use text::{Text, TextFlags};
pub use seperator::{Separator, SeparatorStyle};
pub use selector::Selector;