Advertisement
Guest User

new

a guest
Feb 22nd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 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='aaaa')
  7. TestApp().run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement