Skip to content

Instantly share code, notes, and snippets.

@dequegorg
Created May 28, 2011 09:58
Show Gist options
  • Save dequegorg/996759 to your computer and use it in GitHub Desktop.
Save dequegorg/996759 to your computer and use it in GitHub Desktop.
Kivy Basic Application
import kivy
kivy.require('1.0.0')
from kivy.app import App
from kivy.uix.button import Button
class MyApp(App):
def build(self):
return Button(text='Hello World')
if __name__ in ('__android__', '__main__'):
MyApp().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment