Skip to content

Instantly share code, notes, and snippets.

@kaustubhgupta
Created August 5, 2020 17:06
Show Gist options
  • Save kaustubhgupta/23838982faf963a664b3d5c9dda5a3c6 to your computer and use it in GitHub Desktop.
Save kaustubhgupta/23838982faf963a664b3d5c9dda5a3c6 to your computer and use it in GitHub Desktop.
from kivy.app import App
from kivy.uix.button import Button
class Main(App):
def build(self):
return Button(text='Hello World',
size_hint=(0.5, 0.5))
Main().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment