12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #![allow(non_snake_case)]
- use dioxus::prelude::*;
- fn main() {
- dioxus::desktop::launch(app)
- }
- static NAME: Atom<String> = |_| "world".to_string();
- fn app(cx: Scope) -> Element {
- let name = use_read(&cx, NAME);
- cx.render(rsx! {
- div { "hello {name}!" }
- Child {}
- ChildWithRef{}
- })
- }
- fn Child(cx: Scope) -> Element {
- let set_name = use_set(&cx, NAME);
- cx.render(rsx! {
- button {
- onclick: move |_| set_name("dioxus".to_string()),
- "reset name"
- }
- })
- }
- static NAMES: AtomRef<Vec<String>> = |_| vec!["world".to_string()];
- fn ChildWithRef(cx: Scope) -> Element {
- let names = use_atom_ref(&cx, NAMES);
- cx.render(rsx! {
- div {
- ul {
- names.read().iter().map(|f| rsx!{
- li { "hello: {f}" }
- })
- }
- button {
- onclick: move |_| {
- let names = names.clone();
- cx.spawn(async move {
- names.write().push("asd".to_string());
- })
- },
- "Add name"
- }
- }
- })
- }
|