mirror of
https://github.com/danbulant/cushy
synced 2026-06-10 18:13:48 +00:00
12 lines
274 B
Rust
12 lines
274 B
Rust
use gooey::widget::MakeWidget;
|
|
use gooey::widgets::Space;
|
|
use gooey::Run;
|
|
use kludgine::Color;
|
|
|
|
fn main() -> gooey::Result {
|
|
Space::colored(Color::RED)
|
|
.and("Layers stack widgets on top of each other")
|
|
.into_layers()
|
|
.centered()
|
|
.run()
|
|
}
|