dioxus/packages/dioxus-tui/examples/border.rs

28 lines
672 B
Rust
Raw Normal View History

2022-02-12 20:03:08 +00:00
use dioxus::prelude::*;
fn main() {
dioxus_tui::launch(app);
2022-02-12 20:03:08 +00:00
}
fn app() -> Element {
let mut radius = use_signal(|| 0);
2022-02-12 20:03:08 +00:00
2024-01-14 05:12:21 +00:00
rsx! {
2022-02-12 20:03:08 +00:00
div {
width: "100%",
height: "100%",
justify_content: "center",
align_items: "center",
background_color: "hsl(248, 53%, 58%)",
onwheel: move |w| radius.with_mut(|r| *r = (*r + w.delta().strip_units().y as i8).abs()),
2022-02-12 20:03:08 +00:00
border_style: "solid none solid double",
border_width: "thick",
border_radius: "{radius}px",
border_color: "#0000FF #FF00FF #FF0000 #00FF00",
"{radius}"
}
2024-01-14 05:12:21 +00:00
}
2022-02-12 20:03:08 +00:00
}