mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
24 lines
723 B
Rust
24 lines
723 B
Rust
//! A simple demonstration of how to set attributes on buttons to disable them.
|
|
//!
|
|
//! This example also showcases the shorthand syntax for attributes, and how signals themselves implement IntoAttribute
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
launch(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
let mut disabled = use_signal(|| false);
|
|
|
|
rsx! {
|
|
div { style: "text-align: center; margin: 20px; display: flex; flex-direction: column; align-items: center;",
|
|
button { onclick: move |_| disabled.toggle(),
|
|
"click to "
|
|
if disabled() { "enable" } else { "disable" }
|
|
" the lower button"
|
|
}
|
|
button { disabled, "lower button" }
|
|
}
|
|
}
|
|
}
|