diff options
author | 2021-09-20 15:09:55 +0700 | |
---|---|---|
committer | 2021-09-20 15:14:08 +0700 | |
commit | a0ad3996225601aaa1ebe051cba115374b55c80e (patch) | |
tree | 8420a91cd319a63b1ed257a6334453a1a673bdfb /examples/geometry | |
parent | 5fae6e59ffbc5913761df638dc7f0c35b7f43bc9 (diff) | |
download | iced-a0ad3996225601aaa1ebe051cba115374b55c80e.tar.gz iced-a0ad3996225601aaa1ebe051cba115374b55c80e.tar.bz2 iced-a0ad3996225601aaa1ebe051cba115374b55c80e.zip |
Refactor alignment types into an `alignment` module
Diffstat (limited to 'examples/geometry')
-rw-r--r-- | examples/geometry/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/geometry/src/main.rs b/examples/geometry/src/main.rs index 733efca7..e5115493 100644 --- a/examples/geometry/src/main.rs +++ b/examples/geometry/src/main.rs @@ -161,7 +161,7 @@ mod rainbow { } use iced::{ - scrollable, Column, Container, CrossAlign, Element, Length, Sandbox, + scrollable, Alignment, Column, Container, Element, Length, Sandbox, Scrollable, Settings, Text, }; use rainbow::Rainbow; @@ -194,7 +194,7 @@ impl Sandbox for Example { .padding(20) .spacing(20) .max_width(500) - .align_items(CrossAlign::Start) + .align_items(Alignment::Start) .push(Rainbow::new()) .push(Text::new( "In this example we draw a custom widget Rainbow, using \ |