dioxus-std

Crates.iodioxus-std
lib.rsdioxus-std
version0.5.0
sourcesrc
created_at2023-04-13 19:11:38.131956
updated_at2024-04-05 13:08:58.481068
descriptionPlatform agnostic library for supercharging your productivity with Dioxus
homepagehttps://dioxuslabs.com
repositoryhttps://github.com/DioxusLabs/dioxus-std/
max_upload_size
id838617
size80,602
Jonathan Kelley (jkelleyrtp)

documentation

README

[!NOTE] This crate is no longer updated as it has been moved from dioxus-std to dioxus-sdk as of April 4th, 2024.



🧰 Dioxus Standard Library 🚀

A platform agnostic library for supercharging your productivity with Dioxus.

Crates.io version Download docs.rs docs

This library is still under development. Expect breaking changes!


dioxus-std is a Dioxus standard library that provides abstractions for your Dioxus app. Abstractions included are notifications, clipboard, geolocation and storage with more to come!

Features

  • Geolocation - (Web, Windows)
  • Storage - (Web, Desktop)
  • Clipboard - (Desktop)
  • Notifications - (Desktop)
  • Color Scheme - (Web)
  • i18n
  • Utility Hooks
    • use_channel
    • use_interval
  • Camera
  • WiFi
  • Bluetooth

Geolocation example:

use dioxus_std::geolocation::{
    init_geolocator, use_geolocation, PowerMode
};

fn app() -> Element {
    let geolocator = init_geolocator(PowerMode::High).unwrap();
    let coords = use_geolocation();

    match coords {
      Ok(coords) => {
        rsx!( p { "Latitude: {coords.latitude} | Longitude: {coords.longitude}" } )
      }
      Err(Error::NotInitialized) => {
        rsx!( p { "Initializing..." } )
      }
      Err(e) => {
        rsx!( p { "An error occurred {e}" } )
      }
    }
}

Platform Support

Clipboard

On linux you need the x11 library to use the clipboard abstraction:

sudo apt-get install xorg-dev

Usage

You can add dioxus-std to your application by adding it to your dependencies.

[dependencies]
dioxus-std =  { version = "0.5", features = [] }

License

This project is licensed under the MIT license.

Every contribution intentionally submitted for inclusion in dioxus-std by you, shall be licensed as MIT, without any additional terms or conditions.

Commit count: 68

cargo fmt