dioxus/examples/filedragdrop.rs
2022-01-31 19:40:48 -05:00

18 lines
329 B
Rust

use dioxus::prelude::*;
fn main() {
dioxus::desktop::launch_with_props(app, (), |c| {
c.with_file_drop_handler(|_w, e| {
println!("{:?}", e);
true
})
});
}
fn app(cx: Scope) -> Element {
cx.render(rsx!(
div {
h1 { "drag an file here" }
}
))
}