readme.rs 383 B

12345678910111213141516171819
  1. //! Example: README.md showcase
  2. //!
  3. //! The example from the README.md.
  4. use dioxus::prelude::*;
  5. fn main() {
  6. launch_desktop(app);
  7. }
  8. fn app() -> Element {
  9. let mut count = use_signal(|| 0);
  10. rsx! {
  11. h1 { "High-Five counter: {count}" }
  12. button { onclick: move |_| count += 1, "Up high!" }
  13. button { onclick: move |_| count -= 1, "Down low!" }
  14. }
  15. }