I was looking for information on this issue but found only:

Config.set('graphics', 'width', 100) 

but I would like the application to open full screen. Does kivy have any function for getting the screen size? Or a special feature in Config?

  • one
    Try this: Config.set ('graphics', 'fullscreen', True) Config.write () - Alex Osinny
  • Thanks It works. Not sure how to get the size of the window? - Egor
  • one
    Import Window, print (Window.width), print (Window.height) - Alex Osinny

0