hello_world.rs 267 B

123456789101112
  1. use dioxus::prelude::*;
  2. use dioxus_desktop::tao::menu::MenuBar;
  3. fn main() {
  4. dioxus::desktop::launch_cfg(app, |c| c.with_window(|w| w.with_menu(MenuBar::default())));
  5. }
  6. fn app(cx: Scope) -> Element {
  7. cx.render(rsx! (
  8. div { "Hello, world!" }
  9. ))
  10. }