kivy_example.py 160 B

12345678
  1. from kivy.app import App
  2. from kivy.uix.button import Button
  3. class TestApp(App):
  4. def build(self):
  5. return Button(text='Hello World')
  6. TestApp().run()