How to hide menu bar in my desktop window? #3039
Unanswered
miaomiaowu0428
asked this question in
Q&A
Replies: 2 comments 1 reply
-
And how to customize the menu bar? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Just figured out that you can expand fn main() {
dioxus::LaunchBuilder::new()
.with_cfg(
Config::default().with_menu(None).with_window(
WindowBuilder::new()
.with_maximized(true)
.with_title("Catchy title")
)
)
.launch(App);
} Currently, the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As my title:
I want to hide this, what should I do?
Beta Was this translation helpful? Give feedback.
All reactions