Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to change window size in kivy python

#import everything you want
from kivy.core.window import Window #You must import this
Window.size = (600, 600) #Set it to a tuple with the (width, height) in Pixels
#(800, 600) is the default


#Your usual kivy code....
 
PREVIOUS NEXT
Tagged: #change #window #size #kivy #python
ADD COMMENT
Topic
Name
8+2 =