mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-26 06:00:21 +00:00
feat: add disabled example
This commit is contained in:
parent
8d685f40b7
commit
3d90a2616d
1 changed files with 23 additions and 0 deletions
23
examples/disabled.rs
Normal file
23
examples/disabled.rs
Normal 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"
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
Loading…
Reference in a new issue