cursive/examples/text_area.rs

17 lines
370 B
Rust
Raw Normal View History

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