|
4 yıl önce | |
---|---|---|
.vscode | 4 yıl önce | |
docs | 4 yıl önce | |
examples | 4 yıl önce | |
notes | 4 yıl önce | |
packages | 4 yıl önce | |
.gitignore | 4 yıl önce | |
Cargo.toml | 4 yıl önce | |
LICENSE | 4 yıl önce | |
README.md | 4 yıl önce |
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, props| {
let (selection, set_selection) = use_state(&ctx, || "...?");
ctx.render(rsx! {
div {
h1 { "Hello, {selection}" }
button { "?", onclick: {move |_| set_selection("world!")}}
button { "?", onclick: {move |_| set_selection("Dioxus 🎉")}}
}
})
};
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.
WebApps | Desktop | Mobile | State Management | Docs | Tools |
---|---|---|---|---|---|