mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
d442dac168
* add an option to set a custom menu in the desktop config * Fix rename issue --------- Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
35 lines
1 KiB
Rust
35 lines
1 KiB
Rust
//! This example shows how to use a custom menu bar with Dioxus desktop.
|
|
//! This example is not supported on the mobile or web renderers.
|
|
|
|
use dioxus::desktop::muda::*;
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
// Create a menu bar that only contains the edit menu
|
|
let menu = Menu::new();
|
|
let edit_menu = Submenu::new("Edit", true);
|
|
|
|
edit_menu
|
|
.append_items(&[
|
|
&PredefinedMenuItem::undo(None),
|
|
&PredefinedMenuItem::redo(None),
|
|
&PredefinedMenuItem::separator(),
|
|
&PredefinedMenuItem::cut(None),
|
|
&PredefinedMenuItem::copy(None),
|
|
&PredefinedMenuItem::paste(None),
|
|
&PredefinedMenuItem::select_all(None),
|
|
])
|
|
.unwrap();
|
|
|
|
menu.append(&edit_menu).unwrap();
|
|
|
|
// Create a desktop config that overrides the default menu with the custom menu
|
|
let config = dioxus::desktop::Config::new().with_menu(menu);
|
|
|
|
// Launch the app with the custom menu
|
|
LaunchBuilder::new().with_cfg(config).launch(app)
|
|
}
|
|
|
|
fn app() -> Element {
|
|
rsx! {"Hello World!"}
|
|
}
|