bevy_dioxus

Dioxus Plugin for Bevy

Write Cross-platform application with React-like decralative UI framework
and scalable ECS architecture all in Rust.


WARNING: bevy_dioxus is still in the very early stages of development.

```rust fn main() { App::new() .insertresource(WindowDescriptor { title: "Bevy Dioxus Plugin Example".tostring(), ..Default::default() }) .add_plugin(DioxusPlugin::<(), ()>::new(Root)) .run(); }

fn Root(cx: Scope) -> Element { cx.render(rsx! { h1 { "Hello, World !" } }) } ```

Try examples

```sh gh repo clone JunichiSugiura/bevy_dioxus

cargo run --example counter ```

More examples can be found in examples/ directory.