dioxus/examples/filedragdrop.rs
2024-01-16 13:18:46 -06:00

17 lines
347 B
Rust

use dioxus::prelude::*;
use dioxus_desktop::Config;
fn main() {
LaunchBuilder::new(app)
.cfg(Config::new().with_file_drop_handler(|_w, e| {
println!("{e:?}");
true
}))
.launch_desktop()
}
fn app() -> Element {
rsx!(
div { h1 { "drag a file here and check your console" } }
)
}