mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-09 19:00:46 +00:00
8fa704bcfa
And `Dialog::empty` -> `Dialog::new`
20 lines
411 B
Rust
20 lines
411 B
Rust
extern crate cursive;
|
|
|
|
use cursive::Cursive;
|
|
use cursive::views::{Dialog, TextArea};
|
|
use cursive::traits::*;
|
|
|
|
fn main() {
|
|
let mut siv = Cursive::new();
|
|
|
|
siv.add_layer(Dialog::new()
|
|
.title("Describe your issue")
|
|
.padding((1, 1, 1, 0))
|
|
.content(TextArea::new()
|
|
.with_id("text")
|
|
.fixed_size((30, 5)))
|
|
.button("Ok", Cursive::quit));
|
|
|
|
siv.run();
|
|
}
|