I want to set my KivyMD
application open as a maximized window and it should be opened in in the middle of the screen. And should not be possible to resize the window. I have written a code to disable resizing.
from kivy.config import Config
Config.set('graphics', 'resizable', 0)
But I haven't an idea to open the application as maximized window. So, how to do that? Please help me.