How do you change the size of a window using Kivy. I\'ve been searching around and am able to change pretty much everything except the size of the window that things go into
To manage window config you can use the import from kivy.config import Config on top of source file.
from kivy.config import Config
from kivy.config import Config Config.set('graphics', 'resizable', '0') Config.set('graphics', 'width', '640') Config.set('graphics', 'height', '480')