Skip to content

Instantly share code, notes, and snippets.

@Opiprog
Created November 25, 2017 23:31
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 Opiprog/cc611028538894d684b94fa01ca2406b to your computer and use it in GitHub Desktop.
Save Opiprog/cc611028538894d684b94fa01ca2406b to your computer and use it in GitHub Desktop.
Kivy - Hello World
import kivy
from kivy.app import App
from kivy.uix.label import Label
class MyApp(App):
def build(self):
return Label(text='Hello world')
if __name__ == '__main__':
MyApp().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment