mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-10 03:10:41 +00:00
b38995b906
Add `Boxable` trait.
18 lines
352 B
Rust
18 lines
352 B
Rust
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(TextArea::new()
|
|
.with_id("text")
|
|
.fixed_size((30, 5)))
|
|
.button("Ok", Cursive::quit));
|
|
|
|
siv.run();
|
|
}
|