Skip to content

Instantly share code, notes, and snippets.

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