Iced: maximize window by default

I am using iced to create a GUI application. I want to maximize window by default, how to do it?

This is mostly a winit question. For some backends, you should be able to use the with_maximized builder method.

Additionally, you can use the integration example as a basis for taking control of windowing in your application, instead of using the Sandbox provider. https://github.com/hecrj/iced/tree/master/examples/integration

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.