mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-10 03:10:41 +00:00
b7a270f258
They are now both optional
26 lines
894 B
Rust
26 lines
894 B
Rust
extern crate cursive;
|
|
|
|
use cursive::Cursive;
|
|
use cursive::view::{Dialog,TextView,LinearLayout,BoxView};
|
|
use cursive::align::HAlign;
|
|
|
|
fn main() {
|
|
let mut siv = Cursive::new();
|
|
|
|
// Some description text
|
|
let text = "This is a very simple example of linear layout. Two views are present, a short title above, and this text. The text has a fixed width, and the title is centered horizontally.";
|
|
|
|
// We'll create a dialog with a TextView serving as a title
|
|
siv.add_layer(
|
|
Dialog::new(
|
|
LinearLayout::vertical()
|
|
.child(TextView::new("Title").h_align(HAlign::Center))
|
|
// Box the textview, so it doesn't get too wide.
|
|
// A 0 height value means it will be unconstrained.
|
|
.child(BoxView::fixed_width(30, TextView::new(text))))
|
|
.button("Quit", |s| s.quit())
|
|
.h_align(HAlign::Center));
|
|
|
|
siv.run();
|
|
}
|