dioxus/examples/disabled.rs

26 lines
523 B
Rust
Raw Normal View History

2022-01-08 07:10:47 +00:00
use dioxus::prelude::*;
fn main() {
dioxus_desktop::launch(app);
2022-01-08 07:10:47 +00:00
}
fn app() -> Element {
let disabled = use_state(|| false);
2022-01-08 07:10:47 +00:00
cx.render(rsx! {
div {
button {
2022-03-01 07:50:03 +00:00
onclick: move |_| disabled.set(!disabled),
"click to "
if disabled == true { "enable" } else { "disable" }
2022-03-01 07:50:03 +00:00
" the lower button"
2022-01-08 07:10:47 +00:00
}
button {
disabled: "{disabled}",
"lower button"
}
}
})
}