12345678910111213141516171819202122232425 |
- use dioxus::prelude::*;
- fn main() {
- dioxus_desktop::launch(app);
- }
- fn app(cx: Scope) -> Element {
- let disabled = use_state(cx, || false);
- cx.render(rsx! {
- div {
- button {
- onclick: move |_| disabled.set(!disabled),
- "click to "
- if disabled == true { "enable" } else { "disable" }
- " the lower button"
- }
- button {
- disabled: "{disabled}",
- "lower button"
- }
- }
- })
- }
|