summaryrefslogtreecommitdiffstats
path: root/examples/qr_code
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-12 15:11:30 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-12 15:14:43 +0200
commitf9dd5cbb099bbe44a57b6369be54a442363b7a8d (patch)
treefe16084bc47faadc32d698aa446ea202f7949a4c /examples/qr_code
parentbe06060117da061ad8cad94ab0830c06def6b147 (diff)
downloadiced-f9dd5cbb099bbe44a57b6369be54a442363b7a8d.tar.gz
iced-f9dd5cbb099bbe44a57b6369be54a442363b7a8d.tar.bz2
iced-f9dd5cbb099bbe44a57b6369be54a442363b7a8d.zip
Introduce helper methods for alignment for all widgets
Diffstat (limited to 'examples/qr_code')
-rw-r--r--examples/qr_code/src/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/qr_code/src/main.rs b/examples/qr_code/src/main.rs
index b30ecf15..14db776e 100644
--- a/examples/qr_code/src/main.rs
+++ b/examples/qr_code/src/main.rs
@@ -1,5 +1,5 @@
use iced::widget::{center, column, pick_list, qr_code, row, text, text_input};
-use iced::{Alignment, Element, Theme};
+use iced::{Element, Theme};
pub fn main() -> iced::Result {
iced::application(
@@ -58,7 +58,7 @@ impl QRGenerator {
pick_list(Theme::ALL, Some(&self.theme), Message::ThemeChanged,)
]
.spacing(10)
- .align_items(Alignment::Center);
+ .center_y();
let content = column![title, input, choose_theme]
.push_maybe(
@@ -68,7 +68,7 @@ impl QRGenerator {
)
.width(700)
.spacing(20)
- .align_items(Alignment::Center);
+ .center_x();
center(content).padding(20).into()
}