dioxus-geolocation 0.1.0-alpha.1

Geolocation utilities and hooks for Dioxus.
1
2
3
4
5
6
7
8
9
cfg_if::cfg_if! {
    if #[cfg(windows)] {
        mod windows;
        pub use self::windows::*;
    } else if #[cfg(target_family = "wasm")] {
        mod wasm;
        pub use self::wasm::*;
    }
}