summaryrefslogtreecommitdiffstats
path: root/examples/tour.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-30 20:54:04 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-30 21:00:27 +0100
commit2ff0e48142c302cb93130164d083589bb2ac4979 (patch)
tree0abdf5892d999c0e98b42849c74cab8a619fbb5e /examples/tour.rs
parent74d01a69577065ce4152fc80b297e8816ab3deff (diff)
downloadiced-2ff0e48142c302cb93130164d083589bb2ac4979.tar.gz
iced-2ff0e48142c302cb93130164d083589bb2ac4979.tar.bz2
iced-2ff0e48142c302cb93130164d083589bb2ac4979.zip
Make `Row`, `Column`, and `Checkbox` shrink by default
Diffstat (limited to 'examples/tour.rs')
-rw-r--r--examples/tour.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/examples/tour.rs b/examples/tour.rs
index da05b396..dc5ccb5d 100644
--- a/examples/tour.rs
+++ b/examples/tour.rs
@@ -67,7 +67,7 @@ impl Sandbox for Tour {
);
}
- controls = controls.push(Column::new());
+ controls = controls.push(Column::new().width(Length::Fill));
if steps.can_continue() {
controls = controls.push(
@@ -401,6 +401,7 @@ impl<'a> Step {
))
.push(
Text::new(&value.to_string())
+ .width(Length::Fill)
.horizontal_alignment(HorizontalAlignment::Center),
)
}
@@ -447,6 +448,7 @@ impl<'a> Step {
))
.push(
Text::new(&format!("{} px", spacing))
+ .width(Length::Fill)
.horizontal_alignment(HorizontalAlignment::Center),
);
@@ -561,6 +563,7 @@ impl<'a> Step {
))
.push(
Text::new(&format!("Width: {} px", width.to_string()))
+ .width(Length::Fill)
.horizontal_alignment(HorizontalAlignment::Center),
)
}
@@ -580,6 +583,7 @@ impl<'a> Step {
.push(Column::new().height(Length::Units(4096)))
.push(
Text::new("You are halfway there!")
+ .width(Length::Fill)
.size(30)
.horizontal_alignment(HorizontalAlignment::Center),
)
@@ -587,6 +591,7 @@ impl<'a> Step {
.push(ferris(300))
.push(
Text::new("You made it!")
+ .width(Length::Fill)
.size(50)
.horizontal_alignment(HorizontalAlignment::Center),
)
@@ -629,6 +634,7 @@ impl<'a> Step {
} else {
value
})
+ .width(Length::Fill)
.horizontal_alignment(HorizontalAlignment::Center),
)
}