docsite
docsite copied to clipboard
Dioxuslabs.com documentation site
This PR adds a bunch more anti patterns to the reference along with examples for some existing anti patterns
I just started a dioxus desktop linux app, and on first compile ld complained about not being able to find libxdo, and upon installing xdotool it started to work. In...
As mentioned in https://github.com/DioxusLabs/dioxus/issues/2291, we currently don't have great documentation about setting up a project that targets multiple platforms. A multi platform setup can have one feature per platform: ```toml...
In https://dioxuslabs.com/learn/0.5/reference/fullstack/server_functions it says > You must call `register` on the type you passed into the server macro in your main function before starting your server to tell Dioxus about...
The Tailwind command can be defined in a `package.json` and called using `npm run [cmd]`. ```json "scripts": { "css-dev": "npx tailwindcss -i ./tailwind.css -o ./public/tailwind.css --watch --minify" } ``` ```sh...
Any realistic web app will have things like database connections, or calling other services on the server side. Due to Dioxus "hijacking" the `main` function and sharing it with browser...
While trying to run an example Dioxus 0.5 project with the latest dx tool, targeting dioxus_desktop, I had a linking error. I got the same error both on Debian12 and...
- Mention `use_comparer` - More patterns - Mention community libraries
1. div => button ---- 2. confusing camelCase html attributes, they are mostly kebab-case ---- 3. there is no mention of the `color` above at the docs, at all