kivy/examples/testapp.py

9 lines
143 B
Python
Raw Normal View History

2010-11-04 16:32:10 +00:00
from kivy.app import App
2010-11-05 23:25:13 +00:00
from kivy.uix.button import Button
2010-11-04 16:32:10 +00:00
class TestApp(App):
def build(self):
2010-11-05 23:25:13 +00:00
return Button()
2010-11-04 16:32:10 +00:00
TestApp().run()