2022-01-10 12:57:39 -05:00
|
|
|
use dioxus::prelude::*;
|
2022-09-13 16:22:27 -07:00
|
|
|
use dioxus_desktop::Config;
|
2022-01-10 12:57:39 -05:00
|
|
|
|
|
|
|
fn main() {
|
2024-01-16 08:42:16 -06:00
|
|
|
LaunchBuilder::new(app)
|
|
|
|
.cfg(Config::new().with_file_drop_handler(|_w, e| {
|
2024-01-15 13:06:05 -08:00
|
|
|
println!("{e:?}");
|
|
|
|
true
|
2024-01-16 08:42:16 -06:00
|
|
|
}))
|
2024-01-16 11:45:02 -06:00
|
|
|
.launch_desktop()
|
2022-01-10 12:57:39 -05:00
|
|
|
}
|
|
|
|
|
2024-01-15 17:04:39 -08:00
|
|
|
fn app() -> Element {
|
2024-01-16 13:18:46 -06:00
|
|
|
rsx!(
|
2024-01-16 08:42:16 -06:00
|
|
|
div { h1 { "drag a file here and check your console" } }
|
2024-01-13 21:12:21 -08:00
|
|
|
)
|
2022-01-10 12:57:39 -05:00
|
|
|
}
|