dioxus/examples/disabled.rs

26 lines
536 B
Rust
Raw Normal View History

2022-01-08 07:10:47 +00:00
use dioxus::prelude::*;
fn main() {
dioxus::desktop::launch(app);
}
fn app(cx: Scope) -> Element {
2022-03-01 07:50:03 +00:00
let disabled = use_state(&cx, || 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"}]
" the lower button"
2022-01-08 07:10:47 +00:00
}
button {
disabled: "{disabled}",
"lower button"
}
}
})
}