mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
21 lines
423 B
Rust
21 lines
423 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
launch_desktop(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
let mut disabled = use_signal(|| false);
|
|
|
|
rsx! {
|
|
div {
|
|
button { onclick: move |_| disabled.toggle(),
|
|
"click to "
|
|
if disabled() { "enable" } else { "disable" }
|
|
" the lower button"
|
|
}
|
|
|
|
button { disabled, "lower button" }
|
|
}
|
|
}
|
|
}
|