mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-09 19:00:46 +00:00
28 lines
657 B
Rust
28 lines
657 B
Rust
extern crate cursive;
|
|
|
|
use cursive::Cursive;
|
|
use cursive::theme::{Color, Theme};
|
|
use cursive::views::TextView;
|
|
|
|
fn custom_theme_from_cursive(siv: &Cursive) -> Theme {
|
|
let mut theme = siv.current_theme().clone();
|
|
theme.colors.background = Color::TerminalDefault;
|
|
theme
|
|
}
|
|
|
|
fn main() {
|
|
let mut siv = Cursive::new();
|
|
let theme = custom_theme_from_cursive(&siv);
|
|
|
|
// We can quit by pressing `q`
|
|
siv.add_global_callback('q', Cursive::quit);
|
|
siv.set_theme(theme);
|
|
|
|
siv.add_layer(TextView::new(
|
|
"Hello World with default terminal background color!\n\
|
|
Press q to quit the application.",
|
|
));
|
|
|
|
siv.run();
|
|
}
|