mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-08 18:30:40 +00:00
29 lines
752 B
Rust
29 lines
752 B
Rust
extern crate cursive;
|
|
|
|
use cursive::theme::BaseColor;
|
|
use cursive::theme::Color;
|
|
use cursive::theme::Effect;
|
|
use cursive::theme::Style;
|
|
use cursive::utils::markup::StyledString;
|
|
use cursive::views::{Dialog, TextView};
|
|
use cursive::Cursive;
|
|
|
|
fn main() {
|
|
let mut siv = Cursive::default();
|
|
|
|
let mut styled = StyledString::plain("Isn't ");
|
|
styled.append(StyledString::styled("that ", Color::Dark(BaseColor::Red)));
|
|
styled.append(StyledString::styled(
|
|
"cool?",
|
|
Style::from(Color::Light(BaseColor::Blue)).combine(Effect::Bold),
|
|
));
|
|
|
|
// TextView can natively accept StyledString.
|
|
siv.add_layer(
|
|
Dialog::around(TextView::new(styled))
|
|
.button("Hell yeah!", |s| s.quit()),
|
|
);
|
|
|
|
siv.run();
|
|
}
|