docsite
docsite copied to clipboard
Dioxuslabs.com documentation site
In the [Our Favorites Page section](https://dioxuslabs.com/learn/0.6/guide/routing#our-favorites-page) of the document, the example code for the Favorites page has an incorrect reference to `list_dogs`; it should be `super::super::backend::list_dogs` instead of `super::backend::list_dogs`. https://github.com/DioxusLabs/docsite/blob/df1df4a9be5b838fa47b22c2b5f12297f131d9c3/packages/docs-router/src/doc_examples/guide_router.rs#L201...
**Problem** I can't run example-projects with `dx serve` on my machine. **Steps To Reproduce** Steps to reproduce the behavior: - `dx serve` under [file-explorer](https://github.com/DioxusLabs/dioxus/tree/main/example-projects/file-explorer) and similar error with [wifi-scanner](https://github.com/DioxusLabs/dioxus/tree/main/example-projects/wifi-scanner) **Expected...
Hi! I had to dig a little to fix that - used https://github.com/tauri-apps/tauri/issues/6175#issuecomment-1453458395 as a reference. This also fixes #486 This text was first thing that came to mind to...
We added an integrated debugger in https://github.com/DioxusLabs/dioxus/pull/3814 But there are also other ways to debug dioxus apps. We should document it.
The hook testing example used to use the `use_state` hook which always subscribed to the scope, it started failing when it was updated to use_signal. This PR updates the example...
The 0.7 CLI supports client and server specific flags with the `@client` and `@server` subcommands which is very useful for workspace setups. We should document this feature with the 0.7...
The documentation under the reference heading is generally more out of date and less detailed than what we have in the inline docs on docs.rs. For the documentation that covers...
**Problem** Example test code from https://dioxuslabs.com/learn/0.6/cookbook/testing# has compile warning and does not pass **Steps To Reproduce** Steps to reproduce the behavior: - Copy hook testing example from https://dioxuslabs.com/learn/0.6/cookbook/testing#hook-testing - Compile...