Skip to content

Instantly share code, notes, and snippets.

@tshirtman
Created May 19, 2012 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tshirtman/2732137 to your computer and use it in GitHub Desktop.
Save tshirtman/2732137 to your computer and use it in GitHub Desktop.
from kivy.app import App
from kivy.uix.floatlayout import FloatLayout
from kivy.interactive import InteractiveLauncher
class TestApp(App):
def build(self):
return FloatLayout()
i = InteractiveLauncher(TestApp())
i.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment