|
před 4 roky | |
---|---|---|
.vscode | před 4 roky | |
docs | před 4 roky | |
examples | před 4 roky | |
notes | před 4 roky | |
packages | před 4 roky | |
.gitignore | před 4 roky | |
Cargo.toml | před 4 roky | |
LICENSE | před 4 roky | |
README.md | před 4 roky |
A concurrent, functional, virtual DOM for Rust
Dioxus is a portable, performant, and ergonomic framework for building cross-platform user experiences in Rust.
static Example: FC<()> = |ctx| {
let (value, set_value) = use_state(&ctx, || "...?");
ctx.view(html! {
<div>
<button onclick={move |_| set_value("world!")}> "?" </button>
<button onclick={move |_| set_value("Dioxus 🎉")}> "?" </button>
<div>
<h1> "Hello, {value}" </h1>
</div>
</div>
})
};
Dioxus can be used to deliver webapps, desktop apps, static pages, liveview apps, Android apps, iOS Apps, and more. At its core, Dioxus is entirely renderer agnostic and has great documentation for creating new renderers for any platform.
Dioxus is supported by Dioxus Labs, a company providing end-to-end services for building, testing, deploying, and managing Dioxus apps on all supported platforms, designed especially for your next startup.
WebApps | Desktop | Mobile | State Management | Docs | Tools |
---|---|---|---|---|---|