Advertisement
Guest User

KivyApp.py

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