Advertisement
Guest User

kivy_app.py

a guest
Jun 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. from kivy.app import App
  2. from kivy.uix.button import Button
  3.  
  4. class TestApp(App):
  5.     def build(self):
  6.         return Button(text='Hello world')
  7.  
  8. if __name__ == '__main__':
  9.     TestApp().run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement