mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
535435a4cf
The MergeFunctionsPass in LLVM merges identical functions (https://rust.godbolt.org/z/3nnr9nMne), resulting in the same function addresses.
57 lines
1.2 KiB
Rust
57 lines
1.2 KiB
Rust
#![allow(non_snake_case)]
|
|
|
|
use dioxus::prelude::*;
|
|
use fermi::*;
|
|
|
|
fn main() {
|
|
dioxus_desktop::launch(app)
|
|
}
|
|
|
|
static NAME: Atom<String> = Atom(|_| "world".to_string());
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
use_init_atom_root(cx);
|
|
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>> = AtomRef(|_| 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"
|
|
}
|
|
}
|
|
})
|
|
}
|