mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-21 14:48:42 -06:00
wrap test
This commit is contained in:
parent
c100555f4a
commit
fff37d7345
36
hui-examples/examples/ui_test_wrapping.rs
Normal file
36
hui-examples/examples/ui_test_wrapping.rs
Normal file
|
@ -0,0 +1,36 @@
|
|||
use hui::{
|
||||
color, element::{
|
||||
container::Container,
|
||||
fill_rect::FillRect,
|
||||
text::Text,
|
||||
UiElementExt
|
||||
}, layout::{Alignment, UiDirection}, size
|
||||
};
|
||||
|
||||
#[path = "../boilerplate.rs"]
|
||||
#[macro_use]
|
||||
mod boilerplate;
|
||||
|
||||
ui_main!(|ui, size, _| {
|
||||
Container::default()
|
||||
.with_size(size!(100%))
|
||||
.with_direction(UiDirection::Horizontal)
|
||||
.with_padding(5.)
|
||||
.with_gap(10.)
|
||||
.with_background(color::WHITE)
|
||||
//.with_wrap(true)
|
||||
.with_children(|ui| {
|
||||
Text::default()
|
||||
.with_color(color::BLACK)
|
||||
.with_text("wrapping is not actually implemented yet")
|
||||
.add_child(ui);
|
||||
for _ in 0..10 {
|
||||
FillRect::default()
|
||||
.with_size(size!(100))
|
||||
.with_corner_radius(8.)
|
||||
.with_background(color::DARK_RED)
|
||||
.add_child(ui);
|
||||
}
|
||||
})
|
||||
.add_root(ui, size);
|
||||
});
|
Loading…
Reference in a new issue