1class FirstKivy(App):
2
3 def build(self):
4
5 return Label(text="Hello Kivy!")
6
1from kivy.app import App
2
3from kivy.uix.label import Label
4
5class FirstKivy(App):
6
7 def build(self):
8
9 return Label(text="Hello Kivy!")
10
11FirstKivy().run()