cursive/examples/theme.rs

24 lines
625 B
Rust
Raw Normal View History

extern crate cursive;
use cursive::views::{Dialog, TextView};
2018-07-26 04:43:04 +00:00
use cursive::Cursive;
fn main() {
let mut siv = Cursive::default();
// You can load a theme from a file at runtime for fast development.
2018-06-16 20:23:09 +00:00
siv.load_theme_file("assets/style.toml").unwrap();
// Or you can directly load it from a string for easy deployment.
siv.load_toml(include_str!("../assets/style.toml")).unwrap();
2017-10-12 23:38:55 +00:00
siv.add_layer(
Dialog::around(TextView::new(
"This application uses a \
custom theme!",
)).title("Themed dialog")
2018-08-22 20:33:29 +00:00
.button("Quit", |s| s.quit()),
2017-10-12 23:38:55 +00:00
);
siv.run();
}