dioxus/examples/disabled.rs

25 lines
723 B
Rust
Raw Normal View History

2024-02-14 20:33:07 +00:00
//! 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
2022-01-08 07:10:47 +00:00
use dioxus::prelude::*;
fn main() {
2024-01-20 08:11:55 +00:00
launch(app);
2022-01-08 07:10:47 +00:00
}
fn app() -> Element {
let mut disabled = use_signal(|| false);
2022-01-08 07:10:47 +00:00
2024-01-16 19:18:46 +00:00
rsx! {
2024-02-14 20:33:07 +00:00
div { style: "text-align: center; margin: 20px; display: flex; flex-direction: column; align-items: center;",
2024-01-15 21:06:05 +00:00
button { onclick: move |_| disabled.toggle(),
2022-03-01 07:50:03 +00:00
"click to "
if disabled() { "enable" } else { "disable" }
2022-03-01 07:50:03 +00:00
" the lower button"
2022-01-08 07:10:47 +00:00
}
2024-01-15 21:06:05 +00:00
button { disabled, "lower button" }
2022-01-08 07:10:47 +00:00
}
2024-01-14 05:12:21 +00:00
}
2022-01-08 07:10:47 +00:00
}