Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Kivy_basic.py
- 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()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement