From 73316e630db2a5bca32bce73dfc2b93bc505ecc1 Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Mon, 19 Feb 2024 14:01:51 +0100 Subject: [PATCH] update rounded example --- hui-examples/examples/rounded.rs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/hui-examples/examples/rounded.rs b/hui-examples/examples/rounded.rs index ff952cd..033bf2c 100644 --- a/hui-examples/examples/rounded.rs +++ b/hui-examples/examples/rounded.rs @@ -5,10 +5,11 @@ use winit::{ event_loop::{EventLoopBuilder, ControlFlow} }; use hui::{ + UiDirection, UiInstance, UiSize, element::{ container::{Alignment, Container, Sides}, text::Text - }, UiInstance, UiSize + }, }; use hui_glium::GliumUiRenderer; @@ -40,11 +41,12 @@ fn main() { elements: vec![Box::new(Container { align: (Alignment::Center, Alignment::Center), size: (UiSize::Fraction(0.5), UiSize::Fraction(0.5)), - background: Some(vec4(1., 0.1, 0.1, 1.)), + background: Some(vec4(1., 0., 0., 1.)), corner_radius: Some(30.), elements: vec![ Box::new(Container { padding: Sides::all(20.), + direction: UiDirection::Horizontal, align: (Alignment::Center, Alignment::Center), size: (UiSize::Auto, UiSize::Auto), background: Some(vec4(0.1, 0.1, 0.1, 0.5)), @@ -56,6 +58,12 @@ fn main() { color: vec4(1., 1., 1., 1.), ..Default::default() }), + Box::new(Text { + text: "!".into(), + text_size: 50, + color: vec4(1., 1., 0., 1.), + ..Default::default() + }), ], ..Default::default() }),