upd example

This commit is contained in:
griffi-gh 2024-02-19 13:46:13 +01:00
parent 36947bff94
commit b59447f644

View file

@ -5,11 +5,10 @@ use winit::{
event_loop::{EventLoopBuilder, ControlFlow}
};
use hui::{
UiInstance, UiSize,
element::{
container::{Alignment, Container},
container::{Alignment, Container, Sides},
text::Text
},
}, UiInstance, UiSize
};
use hui_glium::GliumUiRenderer;
@ -43,6 +42,13 @@ fn main() {
size: (UiSize::Fraction(0.5), UiSize::Fraction(0.5)),
background: Some(vec4(1., 0.1, 0.1, 1.)),
corner_radius: Some(30.),
elements: vec![
Box::new(Container {
padding: Sides::all(40.),
align: (Alignment::Center, Alignment::Center),
size: (UiSize::Auto, UiSize::Auto),
background: Some(vec4(0.1, 0.1, 0.1, 0.5)),
corner_radius: Some(30.),
elements: vec![
Box::new(Text {
text: "You tried".into(),
@ -52,6 +58,9 @@ fn main() {
}),
],
..Default::default()
}),
],
..Default::default()
})],
..Default::default()
}, resolution);