dioxus-std
dioxus-std copied to clipboard
A library to provide abstractions to access common utilities when developing Dioxus applications.
on [docs.rs](https://docs.rs/dioxus-sdk/latest/dioxus_sdk/index.html) the "repository" link points at https://github.com/DioxusLabs/dioxus-sdk/ which 404s; it should be https://github.com/DioxusLabs/sdk/
I love using websockets, and frequently set them up for various projects, but there's no great websocket library that does both wasm and native. I might be bad at sleuthing...
Most APIs that let you get and set items in sdk return a signal which implements the readable and writable traits. Those traits expose a bunch of useful helper methods...
https://github.com/dioxus-community/dioxus-i18n
Says that 0.7 is compatible but is not published on crates.io...
I'm currently building a fullstack app on Linux. It uses geolocation, which is not natively supported. My goal is to eventually produce desktop/mobile apps but for now I'm focused on...
Hi there, I think I've found a bug. with this minimal example, built for the web platform: ```rust use dioxus::prelude::*; use dioxus_sdk::storage::*; fn main() { dioxus::launch(App); } #[component] fn App()...
Currently, errors on deserialization from storage fail silently, and the default value is returned. It would be better to return a result so the user can decide what to do...