feat: add disabled example

This commit is contained in:
Jonathan Kelley 2022-01-08 02:10:47 -05:00
parent 8d685f40b7
commit 3d90a2616d

23
examples/disabled.rs Normal file
View file

@ -0,0 +1,23 @@
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.get()),
"click to " [if *disabled {"enable"} else {"disable"} ] " the lower button"
}
button {
disabled: "{disabled}",
"lower button"
}
}
})
}