cursive/examples/dialog.rs

21 lines
512 B
Rust
Raw Normal View History

2015-05-16 21:02:15 +00:00
extern crate cursive;
use cursive::Cursive;
use cursive::views::{Dialog, TextView};
2015-05-16 21:02:15 +00:00
fn main() {
2016-06-26 00:10:18 +00:00
// Creates the cursive root - required for every application.
2015-05-16 21:02:15 +00:00
let mut siv = Cursive::new();
// Creates a dialog with a single "Quit" button
2017-10-12 23:38:55 +00:00
siv.add_layer(
2018-01-16 02:55:27 +00:00
// Most views can be configured in a chainable way
2017-10-12 23:38:55 +00:00
Dialog::around(TextView::new("Hello Dialog!"))
.title("Cursive")
.button("Quit", |s| s.quit()),
);
2015-05-16 21:02:15 +00:00
2016-06-26 00:10:18 +00:00
// Starts the event loop.
2015-05-16 21:02:15 +00:00
siv.run();
}