mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-24 05:03:06 +00:00
53 lines
1.6 KiB
Rust
53 lines
1.6 KiB
Rust
use bumpalo::Bump;
|
|
use dioxus::{events::EventTrigger, prelude::*};
|
|
use dioxus_core as dioxus;
|
|
use dioxus_web::WebsysRenderer;
|
|
|
|
// creates a proxy address that gets transpiled at compile time
|
|
// all asset ids are shuttled through the renderer
|
|
// static IMG: ImgAsset = dioxus_asset!("");
|
|
|
|
fn main() {
|
|
wasm_logger::init(wasm_logger::Config::new(log::Level::Debug));
|
|
console_error_panic_hook::set_once();
|
|
wasm_bindgen_futures::spawn_local(WebsysRenderer::start(Example))
|
|
}
|
|
|
|
static Example: FC<()> = |ctx, props| {
|
|
let (name, set_name) = use_state(&ctx, || "...?");
|
|
|
|
let handler = move |_| set_name("jill");
|
|
|
|
ctx.render(rsx! {
|
|
div {
|
|
class: "py-12 px-4 text-center w-full max-w-2xl mx-auto"
|
|
span {
|
|
class: "text-sm font-semibold"
|
|
"Dioxus Example: Jack and Jill"
|
|
}
|
|
h2 {
|
|
class: "text-5xl mt-2 mb-6 leading-tight font-semibold font-heading"
|
|
"Hello, {name}"
|
|
}
|
|
button {
|
|
class: "inline-block py-4 px-8 mr-6 leading-none text-white bg-indigo-600 hover:bg-indigo-900 font-semibold rounded shadow"
|
|
onmouseover: move |_| set_name("jack")
|
|
"Jack!"
|
|
}
|
|
button {
|
|
class: "inline-block py-4 px-8 mr-6 leading-none text-white bg-indigo-600 hover:bg-indigo-900 font-semibold rounded shadow"
|
|
onfocus: {handler}
|
|
onmouseover: move |_| {
|
|
set_name("jill");
|
|
}
|
|
"Jill!"
|
|
}
|
|
}
|
|
})
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// onclick: {move |_| set_name("jill")}
|