Dioxus: React-like Rust framework for web, desktop, and mobile. One codebase, all platforms.
fn App() -> Element {
let mut count = use_signal(|| 0);
rsx! { button { onclick: move |_| count += 1, "Count: {count}" } }
}
dx serve # web
dx serve --desktop # desktop
dx serve --mobile # mobile
Cross-platform Rust with the best DX in the ecosystem.
Need to automate data collection or build custom scrapers? Check out my Apify actors for ready-made tools, or email spinov001@gmail.com for custom solutions.
Top comments (0)