first commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
|
||||
|
||||
import kivy
|
||||
kivy.require('1.0.6') # replace with your current kivy version !
|
||||
|
||||
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()
|
||||
Reference in New Issue
Block a user