mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-21 22:58:42 -06:00
upd example
This commit is contained in:
parent
16fc3219f9
commit
2d2e335259
|
@ -40,17 +40,18 @@ fn main() {
|
|||
.with_size(size!(100%, 50%))
|
||||
.with_align(Alignment::Center)
|
||||
.with_padding(5.)
|
||||
.with_gap(10.)
|
||||
.with_corner_radius(10.)
|
||||
.with_background(color::RED)
|
||||
.with_background(color::WHITE)
|
||||
.with_children(|ui| {
|
||||
Text::default()
|
||||
.with_text("Hello, world")
|
||||
.with_text_size(100)
|
||||
.with_color(color::WHITE)
|
||||
.with_color(color::BLACK)
|
||||
.add_child(ui);
|
||||
Container::default()
|
||||
.with_padding((10., 20.))
|
||||
.with_corner_radius((10., 20., 50., 10.))
|
||||
.with_corner_radius((2.5, 30., 2.5, 2.5))
|
||||
.with_background(color::DARK_RED)
|
||||
.with_children(|ui| {
|
||||
Text::default()
|
||||
|
|
Loading…
Reference in a new issue