#dioxus #hook #dom #standard #gui #color-scheme

dioxus-sdk

Platform agnostic library for supercharging your productivity with Dioxus

2 unstable releases

0.5.0 Apr 5, 2024
0.0.0 Apr 4, 2024

#124 in Operating systems

Download history 256/week @ 2024-04-02 793/week @ 2024-04-09 566/week @ 2024-04-16

1,615 downloads per month

MIT license

81KB
1.5K SLoC

🧰 Dioxus Development Kit 🚀

A platform agnostic library for supercharging your productivity with Dioxus.


This library is still under development. Expect breaking changes!


dioxus-sdk is a development kit for Dioxus 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_sdk::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-sdk to your application by adding it to your dependencies.

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

License

This project is licensed under the MIT license.

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

Dependencies

~2–47MB
~687K SLoC