mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-10 11:20:45 +00:00
26 lines
914 B
Rust
26 lines
914 B
Rust
extern crate cursive;
|
|
|
|
use cursive::{Cursive};
|
|
use cursive::view::{Dialog,EditView,TextView};
|
|
|
|
fn main() {
|
|
let mut siv = Cursive::new();
|
|
|
|
// Create a dialog with an edit text and a button.
|
|
siv.add_layer(Dialog::new(EditView::new().min_length(20).with_id("edit"))
|
|
.padding((1,1,1,0))
|
|
.title("Enter your name")
|
|
.button("Ok", |s| {
|
|
// When the button is clicked, read the text and print it in a new dialog.
|
|
let content = {
|
|
let name = s.find_id::<EditView>("edit").unwrap().get_content();
|
|
format!("Hello {}!", name)
|
|
};
|
|
s.pop_layer();
|
|
s.add_layer(Dialog::new(TextView::new(&content))
|
|
.button("Quit", |s| s.quit()));
|
|
}));
|
|
|
|
siv.run();
|
|
}
|