dioxus-std icon indicating copy to clipboard operation
dioxus-std copied to clipboard

A library to provide abstractions to access common utilities when developing Dioxus applications.

Results 22 dioxus-std issues
Sort by recently updated
recently updated
newest added

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/

Closes https://github.com/DioxusLabs/sdk/issues/56

enhancement

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...

enhancement

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...

enhancement

https://github.com/dioxus-community/dioxus-i18n

enhancement

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...

enhancement