cursive/examples/text_area.rs

20 lines
413 B
Rust
Raw Normal View History

2016-08-02 07:32:16 +00:00
extern crate cursive;
use cursive::Cursive;
use cursive::views::{Dialog, TextArea};
use cursive::traits::*;
2016-08-02 07:32:16 +00:00
fn main() {
let mut siv = Cursive::new();
siv.add_layer(Dialog::empty()
.title("Describe your issue")
.padding((1, 1, 1, 0))
.content(TextArea::new()
.with_id("text")
.fixed_size((30, 5)))
2016-08-02 07:32:16 +00:00
.button("Ok", Cursive::quit));
siv.run();
}