mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
d9546d9504
* feat: use synchronous router design * feat: function to get router out of dom * chore: restructure workspace to use renderers as packages, not features
22 lines
467 B
Rust
22 lines
467 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus_desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
let val = use_state(&cx, || "0.0001");
|
|
|
|
let num = match val.parse::<f32>() {
|
|
Err(_) => return cx.render(rsx!("Parsing failed")),
|
|
Ok(num) => num,
|
|
};
|
|
|
|
cx.render(rsx! {
|
|
h1 { "The parsed value is {num}" }
|
|
button {
|
|
onclick: move |_| val.set("invalid"),
|
|
"Set an invalid number"
|
|
}
|
|
})
|
|
}
|