Answers for "how to set the size of a kivy window bigger than screen"

0

how to set the size of a kivy window bigger than screen

from kivy.config import Config
Config.set('graphics', 'width', '200')  # sets width to 200px
Config.set('graphics', 'height', '200')  # sets height to 200px
Posted by: Guest on April-22-2022

Code answers related to "how to set the size of a kivy window bigger than screen"

Python Answers by Framework

Browse Popular Code Answers by Language