“Como mudar o tamanho da janela em Kivy Python” Respostas de código

Como mudar o tamanho da janela em 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....
SilverShade

Como mudar o tamanho da janela em Kivy Python

# Importing window module that's going to enable us to change the size
from kivy.core.window import Window

# Perfect mobile size
Window.size = (350, 600)
Ian Githinji

Respostas semelhantes a “Como mudar o tamanho da janela em Kivy Python”

Perguntas semelhantes a “Como mudar o tamanho da janela em Kivy Python”

Mais respostas relacionadas para “Como mudar o tamanho da janela em Kivy Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código