Matt Hunzinger
Matt Hunzinger
If we can nest contexts (as in set them in a child context and pop them off when we get to a sibling function) this would be great for function...
Thanks! That got me a little farther but now I'm running into this error: ```hs {-@ type Scheme = {s:String | isValid s} @-} {-@ f :: Scheme @-} f...
> Hated having to > > ``` > Text { class: "some-class".into() } // or the to_string() > ``` Unfortunately this would be a breaking change but I'd say the...
TODO: Greg Johnston's new [oco_ref](https://docs.rs/oco_ref/0.1.1/oco_ref/l) crate might fit great here š
Yeah I think that'd be a great feature. I've done some initial work on this with f7745926a7ba25a97bc50f503012c4cb47a0bd89 which allows this syntax: ```rust let user = User::table().select().fetch_one(&pool).await.unwrap(); ``` More info can...
That's a great point, I was thinking just like an SQL db but having a local cache would save a lot of time and bandwidth I wonder how that could...
Is `WRY_WEBVIEW` a container for Dioxus desktop apps? @ealmloff If we need to have it Iām wondering if setting `tabindex=-1` would fix this š¤
Would something like this work for you? ```rs fn main () { // If you need to load from env vars or etc let locale = String::from("en"); launch(move || {...
Hmm looks like this is the line panicking in the latest git https://github.com/DioxusLabs/dioxus/blob/7210d333cdcd6e1499926dc184b6a244db376baf/packages/cli/src/cli/bundle.rs#L173
```rs // Tauri bundle will add a __root__ prefix if the input path is absolute even though the output path is relative? ``` Maybe Tauri doesn't prefix on Windows? I'll...