cushy/examples/layers.rs
Jonathan Johnson 288119a831
Added Layers
2023-12-05 08:51:55 -08:00

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()
}