Crate btui[−][src]
Expand description
btui
beautiful text user interfaces
with btui you can create beautiful text user interfaces for the terminal.
To get started add btui as a dependency to your project:
btui = "0.6.5"Examples
This is a basic coloring example which will output hello world in red:
ⓘ
use btui::effects::{Color, Special};
use btui::print::{fg, sp};
println!("{}Hello World!{}", fg(Color::Red), sp(Special::Reset));