Skip to content

Instantly share code, notes, and snippets.

@tommasodeponti
Created April 20, 2020 19:24
Show Gist options
  • Save tommasodeponti/7a27dfcbbd940d0db2fa0970cdb1b359 to your computer and use it in GitHub Desktop.
Save tommasodeponti/7a27dfcbbd940d0db2fa0970cdb1b359 to your computer and use it in GitHub Desktop.
from kivy.app import App
from kivy.uix.button import Button
class TestApp(App):
def build(self):
return Button(text='Hello World')
TestApp().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment