* Create Kivy.py

* Update readme.md

* Remove one newline
This commit is contained in:
calgary34
2022-01-21 14:31:15 -07:00
committed by GitHub
parent 9db7959128
commit a61676467c
2 changed files with 14 additions and 0 deletions

13
k/Kivy.py Normal file
View File

@@ -0,0 +1,13 @@
import kivy
kivy.require('1.0.6')
from kivy.app import App
from kivy.uix.label import Label
class MyApp(App):
def build(self):
return Label(text='Hello World')
if __name__ == '__main__':
MyApp().run()