Raflos10
Raflos10
Reproduce: Test the [example](https://louisbrunner.github.io/dnd-multi-backend/examples/react-dnd-multi-backend.html ) and try using mobile touch mode on any of the boxes. The very first time, the preview's top-left corner will be exactly on the mouse....
Hi. I have a 3rd party bluetooth controller (Hyperkin ProCube Gamecube Style Pro Controller) that connects successfully as a Wii U Pro Controller, but none of its inputs are recognized...
Since switching to the latest build of extended, I noticed that the importer for tiled map files (.tmx) automatically processes tile source images even if they aren't referenced in the...
## Feature Request My idea is to have a new feature for the dioxus extension that allows you to create a new file with a component template. ## Implement Suggestion...
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...
```rust let mut storage = use_storage::(String::from("item"), || None); ``` ```rust let onclick = EventHandler::new(move |_| { storage.set(None); tracing::debug!("Clicked."); }); ``` ^ works as expected ```rust let onclick = EventHandler::new(move |_|...
It looks like the generated code is expecting the result from postgrest to be in a hex encoded format, but as far as I can tell, postgrest provides it already...
Given a table with a column of a custom enum type, the resulting generated `fromJson` function should be something like: ```dart gender: jsonn['gender'] != null ? GENDER.values.byName(jsonn['gender'].toString()) : null, ```...