dioxus/examples/filedragdrop.rs

20 lines
333 B
Rust
Raw Normal View History

2022-01-10 17:57:39 +00:00
use dioxus::prelude::*;
use dioxus_desktop::Config;
2022-01-10 17:57:39 +00:00
fn main() {
2024-01-15 21:06:05 +00:00
Config::new()
.with_file_drop_handler(|_w, e| {
println!("{e:?}");
true
})
.launch(app)
2022-01-10 17:57:39 +00:00
}
fn app() -> Element {
2024-01-14 05:12:21 +00:00
rsx!(
2022-01-10 17:57:39 +00:00
div {
2022-03-05 20:25:09 +00:00
h1 { "drag a file here and check your console" }
2022-01-10 17:57:39 +00:00
}
2024-01-14 05:12:21 +00:00
)
2022-01-10 17:57:39 +00:00
}