Software Alternatives, Accelerators & Startups
Table of contents
  1. Videos
  2. Social Mentions
  3. Comments

Dioxus

An elegant GUI library for Rust, inspired by React. Supports Web, Desktop, SSR, Liveview, and Mobile.

Dioxus Reviews and details

Screenshots and images

  • Dioxus Landing page
    Landing page //
    2023-10-06

Badges

Promote Dioxus. You can add any of these badges on your website.

SaaSHub badge
Show embed code

Videos

How to Use Dioxus! | Final Fantasy Brave Exvius - Unit Reviews, Guides, and Rotations!

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Dioxus and what they use it for.
  • When Should I Use WebAssembly?
    Leptos, Yew and Dioxus are modern frameworks for building front-end web apps in Rust. These all compile to Wasm. - Source: dev.to / 14 days ago
  • WASM Wayland Web (WWW)
    > The web had this before briefly. Back in the 90s and 00s, some people just wanted to use Flash. WebAssembly is different. WebAssembly brings every language to the web. Flash didn't. WebAssembly can render to canvas and enable applications that compile to desktop, mobile, and the web. UI libraries like Avalonia do this: https://avaloniaui.net/ For example, here's C# implementation of Visual Basic 6... - Source: Hacker News / 26 days ago
  • Why Ruby on Rails still matters
    Or if you want more Next.JS like, but still fullstack framework there is https://leptos.dev/ and https://dioxuslabs.com/. Maybe dioxus being much more ambitious in its scope (not just web). - Source: Hacker News / about 1 month ago
  • If Not React, Then What?
    > You still need to access the DOM, which can't be done directly from WASM. Maybe someday it will happen? You can access the DOM through JavaScript glue. These Rust WASM frameworks do that: - Leptos: https://www.leptos.dev/ - Sycamore: https://sycamore.dev/ - Yew: https://yew.rs/ - Dioxus: https://dioxuslabs.com/ - https://github.com/BAndysc/AvaloniaVisualBasic6 -... - Source: Hacker News / 4 months ago
  • If Not React, Then What?
    My answer: Something not JS, or even TS. So it has to compile to JS or WASM or both. Rust is cool. Dioxus looks really promising. https://dioxuslabs.com/ Elm is great. Actually quite mature in my experience. (Sure there are talks about the development model and release cadence, but still...) Same $LANG as on the backend, as many langs compile to JS and/or WASM nowadays. But... - Source: Hacker News / 4 months ago
  • Tauri 2.0 Release Candidate
    Related: Dioxus > Dioxus is a Rust library for building apps that run on desktop, web, mobile, and more. https://dioxuslabs.com (Dioxus uses Tauri). - Source: Hacker News / 8 months ago
  • Ask HN: Who is hiring? (June 2024)
    Dioxus Labs (http://dioxuslabs.com) - a WGPU powered HTML/CSS renderer (http://github.com/dioxusLabs/blitz) - upcoming mobile tooling - TUI-based devtools for a ruby-on-rail like experience - a deploy platform for web/desktop/mobile/backend and all the fun that entails... I'm looking for a founding systems engineer passionate about Rust, WASM, apps, the web, compilers, linkers, and devex - basically someone who's... - Source: Hacker News / 10 months ago
  • Why Are Tech Reporters Sleeping on the Biggest App Store Story?
    I think something like https://dioxuslabs.com could deliver native, cross platform apps and win back mobile. - Source: Hacker News / about 1 year ago
  • Using Dioxus with Rust to build performant single-page apps
    While we took an in-depth look at Dioxus in this tutorial, there is still so much to learn. Luckily, Dioxus provides detailed documentation with references and cookbooks to guide developers. Make sure you check it out, and feel free to comment below with any questions. - Source: dev.to / over 1 year ago
  • Package All the Things
    You can probably imagine the challenges of integrating such a system in a robust way that does a good job and improves on the status quo. We felt like the Tauri implementation worked well for Tauri apps. But there’s a problem: it was so tightly coupled to Tauri that the work couldn’t be enjoyed by other projects (not even the ones like Dioxus who were using Tauri’s underlying technology of Tao + Wry). - Source: dev.to / over 1 year ago
  • Announcing Floneum (A open source graph editor for local AI workflows written in rust)
    Floneum is a graph editor for local AI workflows. It uses llm to run large language models locally, egui, and dioxus for the frontend, and wasmtime for the plugin system. If you are interested in the project, consider joining the discord, or building a plugin for Floneum in rust using WASI. Source: over 1 year ago
  • PSA: Rust web frontend with Tailwind is easy!
    I think Dioxus supports hot reloading on web. Or maybe it was only Desktop - I can't recall. Source: over 1 year ago
  • Tauri vs Flutter
    Just want to drop in and mention Dioxus. Currently, the desktop and mobile renderers build off of Tauri. I believe Dioxus' goals align more with Flutter than Tauri does (don't quote me on this). Source: almost 2 years ago
  • Hey Rustaceans! Got a question? Ask here (21/2023)!
    I you are up to working with something more experimental then you can try https://dioxuslabs.com/. They have a really nice rsx macro to help you write the UI. Source: almost 2 years ago
  • What dashboard UI tools does the Rust ecosystem have?
    I'm interested in building a dashboard app with Rust. I've seen some UI libraries that seem fairly mature (I've been thinking of using Dioxus), and I know of at least one data visualization library called plotters, but I wanted to know if anyone else in the Rust community had built a dashboard or knew of any tools that are meant for building dashboards specifically. Also, if my project were to be a desktop app,... Source: almost 2 years ago
  • Simple GUI framework for responsive design
    If you know any HTML and CSS, Dioxus may be a good choice. Source: almost 2 years ago
  • Integrating TailwindCSS with a Dioxus Desktop App in Rust
    Dioxus - A user interface library written in Rust, inspired by React. - Source: dev.to / almost 2 years ago
  • What is the most fully-featured rust frontend framework?
    Dioxus is the best one I was seeing, but I haven't gotten around to digging into. Source: almost 2 years ago
  • Hey Rustaceans! Got a question? Ask here (16/2023)!
    Dioxus is a React-like framework, also with excellent performance. It has great platform support on web, desktop, mobile and TUI. Also has server-side rendering & client-side hydration, but also "LiveView" similar to Phoenix LiveView (Elixir) or Laravel LiveWire (PHP). Tooling is very good, just like with Leptos. Source: almost 2 years ago
  • Can Rust Beat JavaScript in 2023?
    One of the libraries from the article which I have experience with is https://dioxuslabs.com/ It has a server side rendering mode, which for most projects will be all you need. So then if you follow the Islands Architecture https://www.patterns.dev/posts/islands-architecture means you can sprinkle some typescript when you need more dynamic functionality. I'd love to use Rust for front end enhancement in this way,... - Source: Hacker News / almost 2 years ago
  • Learning rust and/or creating an MVP: help needed me with decision paralysis
    Thanks a lot for the recommendations! Do you have an opinion regarding Dioxus? (I stumbled upon it after looking at Sycamore). Sycamore seems more mature though. Source: almost 2 years ago

Do you know an article comparing Dioxus to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Dioxus discussion

Log in or Post with

This is an informative page about Dioxus. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.