|
преди 4 години | |
---|---|---|
.vscode | преди 4 години | |
docs | преди 4 години | |
examples | преди 4 години | |
notes | преди 4 години | |
packages | преди 4 години | |
.gitignore | преди 4 години | |
Cargo.toml | преди 4 години | |
LICENSE | преди 4 години | |
README.md | преди 4 години |
Frontend that scales.
Dioxus is a portable, performant, and ergonomic framework for building cross-platform user experiences in Rust.
#[fc]
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 |
---|---|---|---|---|---|