How can we create a window without title bar?
Pass decorations: false in window settings (https://docs.rs/iced/0.1.1/iced/window/struct.Settings.html)
For an Application, it's something along the lines of:
MyApp::run(Settings {
window: iced::window::Settings {
decorations: false,
..iced::window::Settings::default()
},
..Settings::default()
});
thx
Most helpful comment
Pass
decorations: falsein window settings (https://docs.rs/iced/0.1.1/iced/window/struct.Settings.html)For an Application, it's something along the lines of: