cursive/examples/linear.rs
Alexandre Bury 8acc08f340 Rustfmt
2018-06-10 23:29:19 -07:00

39 lines
1.3 KiB
Rust

extern crate cursive;
use cursive::align::HAlign;
use cursive::traits::*;
use cursive::views::{Dialog, DummyView, LinearLayout, TextView};
use cursive::Cursive;
// This example uses a LinearLayout to stick multiple views next to each other.
fn main() {
let mut siv = Cursive::default();
// 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::around(
LinearLayout::vertical()
.child(TextView::new("Title").h_align(HAlign::Center))
// Dummy views can be used for spacing
.child(DummyView.fixed_height(1))
// Disabling scrolling means the view cannot shrink.
// Try resizing the window, and see what happens!
.child(TextView::new(text).scrollable(false))
.child(TextView::new(text))
.child(TextView::new(text))
.child(TextView::new(text))
// Give everything a fixed width so it doesn't get too wide
.fixed_width(30),
).button("Quit", |s| s.quit())
.h_align(HAlign::Center),
);
siv.run();
}