DEV Community

Alex Spinov
Alex Spinov

Posted on

Dioxus Has a Free API That Builds Cross-Platform Apps in Rust With React-Like Syntax

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}" } }
}
Enter fullscreen mode Exit fullscreen mode
dx serve          # web
dx serve --desktop # desktop
dx serve --mobile  # mobile
Enter fullscreen mode Exit fullscreen mode

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)