dioxus-std 0.5.0

Platform agnostic library for supercharging your productivity with Dioxus
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
cfg_if::cfg_if! {
    if #[cfg(any(windows, target_family = "wasm"))] {
        pub mod core;
        pub mod platform;
        pub mod use_geolocation;
        pub use self::core::*;
        pub use self::use_geolocation::*;
    }
    else {
        compile_error!("The geolocation module is not supported on this platform.");
    }
}