mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-02-17 14:18:27 +00:00
48 lines
1.5 KiB
Rust
48 lines
1.5 KiB
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
// rink::launch(app);
|
|
rink::launch_cfg(
|
|
app,
|
|
rink::Config {
|
|
rendering_mode: rink::RenderingMode::Ansi,
|
|
},
|
|
);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
let steps = 50;
|
|
cx.render(rsx! {
|
|
div{
|
|
width: "100%",
|
|
height: "100%",
|
|
flex_direction: "column",
|
|
(0..=steps).map(|x|
|
|
{
|
|
let hue = x as f32*360.0/steps as f32;
|
|
cx.render(rsx! {
|
|
div{
|
|
width: "100%",
|
|
height: "100%",
|
|
flex_direction: "row",
|
|
(0..=steps).map(|y|
|
|
{
|
|
let alpha = y as f32*100.0/steps as f32;
|
|
cx.render(rsx! {
|
|
div {
|
|
left: "{x}px",
|
|
top: "{y}px",
|
|
width: "10%",
|
|
height: "100%",
|
|
background_color: "hsl({hue}, 100%, 50%, {alpha}%)",
|
|
}
|
|
})
|
|
}
|
|
)
|
|
}
|
|
})
|
|
}
|
|
)
|
|
}
|
|
})
|
|
}
|