dioxus-std 0.5.0

Platform agnostic library for supercharging your productivity with Dioxus
Documentation
//#![warn(missing_debug_implementations, missing_docs)]

cfg_if::cfg_if! {
    if #[cfg(feature = "color_scheme")] {
        pub mod color_scheme;
    }
}

cfg_if::cfg_if! {
    if #[cfg(feature = "geolocation")] {
        pub mod geolocation;
    }
}

cfg_if::cfg_if! {
    if #[cfg(any(feature = "utils"))] {
        pub mod utils;
    }
}

cfg_if::cfg_if! {
    if #[cfg(feature = "i18n")] {
        pub mod i18n;
    }
}

cfg_if::cfg_if! {
    if #[cfg(feature = "clipboard")] {
        pub mod clipboard;
    }
}

cfg_if::cfg_if! {
    if #[cfg(feature = "storage")] {
        pub mod storage;
    }
}