dioxus/packages/desktop/src
2022-06-13 17:02:43 -05:00
..
assets feat: move default_icon to assets 2022-02-14 16:53:35 +08:00
cfg.rs fmt 2022-04-16 17:02:57 -04:00
controller.rs log parse errors 2022-06-13 17:02:43 -05:00
desktop_context.rs conditional devtools 2022-06-10 06:04:54 +08:00
escape.rs fix: really big bug around hooks 2021-11-29 11:10:40 -05:00
events.rs fix: dblclick instead of doubleclick 2022-03-11 10:49:38 -05:00
index.html feat: allow customizing the index and head 2022-04-16 16:53:47 -04:00
lib.rs feat: upgrade wry 2022-05-05 16:29:24 -04:00
protocol.rs feat: allow customizing the index and head 2022-04-16 16:53:47 -04:00
readme.md docs: even more docs 2022-03-06 20:37:57 -05:00

Dioxus Desktop Renderer

Render the Dioxus VirtualDom using the platform's native WebView implementation.

Desktop

One of Dioxus' flagship features is the ability to quickly build a native desktop app that looks and feels the same across platforms. Apps built with Dioxus are typically <5mb in size and use existing system resources, so they won't hog extreme amounts of RAM or memory.

Dioxus Desktop is built off Tauri. Right now there aren't any Dioxus abstractions over keyboard shortcuts, menubar, handling, etc, so you'll want to leverage Tauri - mostly Wry and Tao directly. An upcoming release of Dioxus-Desktop will include components and hooks for notifications, global shortcuts, menubar, etc.

Getting Set up

Getting Set up with Dioxus-Desktop is quite easy. Make sure you have Rust and Cargo installed, and then create a new project:

$ cargo new --bin demo
$ cd app

Add Dioxus with the desktop feature:

$ cargo add dioxus --features desktop

Edit your main.rs:

// main.rs
use dioxus::prelude::*;

fn main() {
    dioxus::desktop::launch(app);
}

fn app(cx: Scope) -> Element {
    cx.render(rsx!{
        div {
            "hello world!"
        }
    })
}

To configure the webview, menubar, and other important desktop-specific features, checkout out some of the launch configuration in the API reference.

Future Steps

Make sure to read the Dioxus Guide if you already haven't!