1
1
Fork 0
mirror of https://github.com/griffi-gh/hUI.git synced 2025-04-01 21:46:29 -05:00

fix transform example

This commit is contained in:
griffi-gh 2025-03-11 10:54:04 +01:00
parent c30bacf26c
commit 82b2960adf

View file

@ -10,10 +10,10 @@ use hui::{
},
layout::Alignment,
rect::Corners,
text::FontHandle,
rect_frame,
size,
};
use hui_painter::text::FontHandle;
#[path = "../boilerplate.rs"]
#[macro_use]
@ -49,11 +49,11 @@ ui_main!(
.with_children(|ui| {
Text::default()
.with_text("Did you know?")
.with_text_size(18)
.with_text_size(18.)
.add_child(ui);
Text::default()
.with_text("You can die by jumping into the spike pit! :D\nCheck out the tutorial section for more tips.")
.with_text_size(24)
.with_text_size(24.)
.with_font(FontHandle::default())
.add_child(ui);
})