dioxus/examples/error_handle.rs

26 lines
418 B
Rust
Raw Normal View History

2023-11-08 00:24:07 +00:00
use dioxus::{core::CapturedError, prelude::*};
fn main() {
dioxus_desktop::launch(app);
}
2024-01-15 21:06:05 +00:00
fn app() -> Element {
2024-01-14 05:12:21 +00:00
rsx! {
2023-11-08 00:24:07 +00:00
ErrorBoundary {
handle_error: |error: CapturedError| rsx! {"Found error {error}"},
2024-01-14 05:12:21 +00:00
DemoC { x: 1 }
}
2024-01-14 05:12:21 +00:00
}
2022-11-16 09:13:39 +00:00
}
#[component]
fn DemoC(x: i32) -> Element {
2023-11-08 00:24:07 +00:00
let result = Err("Error");
result.throw()?;
render! {
h1 { "{x}" }
}
}