Increase text size of pane dimensions in pane_grid example

This commit is contained in:
Héctor Ramón Jiménez 2022-01-12 11:19:51 +07:00
parent 870d651f35
commit c85caff7a5
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -352,7 +352,7 @@ impl Content {
.width(Length::Fill)
.spacing(10)
.align_items(Alignment::Center)
.push(Text::new(format!("{}x{}", size.width, size.height)).size(18))
.push(Text::new(format!("{}x{}", size.width, size.height)).size(24))
.push(controls);
Container::new(content)