diff options
author | 2023-02-27 16:49:25 +0100 | |
---|---|---|
committer | 2023-02-27 16:54:28 +0100 | |
commit | 9e815cb749f1bf6bce0232e870be266aca0c0742 (patch) | |
tree | a8947e78efcd14435e47f4b2db89d2c58e4471ec /examples/scrollable | |
parent | 5f93437285c4451a8b5ffac1b3c9e1b91e8a5918 (diff) | |
download | iced-9e815cb749f1bf6bce0232e870be266aca0c0742.tar.gz iced-9e815cb749f1bf6bce0232e870be266aca0c0742.tar.bz2 iced-9e815cb749f1bf6bce0232e870be266aca0c0742.zip |
Remove `Fill` variant for `Alignment`
Implementing this generically in our `flex` logic has an exponential
cost. Let's explore other options!
Diffstat (limited to 'examples/scrollable')
-rw-r--r-- | examples/scrollable/src/main.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/scrollable/src/main.rs b/examples/scrollable/src/main.rs index 7c858961..a3ade54f 100644 --- a/examples/scrollable/src/main.rs +++ b/examples/scrollable/src/main.rs @@ -254,7 +254,6 @@ impl Application for ScrollableDemo { scroll_to_beginning_button(), vertical_space(40), ] - .align_items(Alignment::Fill) .spacing(40), horizontal_space(1200), text("Horizontal - End!"), |