Код: Выделить всё
from kivy.app import App
from kivy.uix.label import Label
class MainApp(App):
@property
def build(self):
return Label(text="Hello, World!")
MainApp().run()
Подробнее здесь: https://stackoverflow.com/questions/793 ... pp-root-if
Код: Выделить всё
from kivy.app import App
from kivy.uix.label import Label
class MainApp(App):
@property
def build(self):
return Label(text="Hello, World!")
MainApp().run()