Skip to content

Instantly share code, notes, and snippets.

@wildlux
Created September 6, 2016 14:23
Show Gist options
  • Save wildlux/6d0548059e2d07ae82b72ce0f4d06f70 to your computer and use it in GitHub Desktop.
Save wildlux/6d0548059e2d07ae82b72ce0f4d06f70 to your computer and use it in GitHub Desktop.
import kivy
from kivy.app import App
from kivy.uix.button import Button
from kivy.lang import Builder
kivy.require('1.0.9')
Builder.load_file("./style_page.kv")
class GRID(App):
def build(self):
pass
if __name__ == "__main__":
GRID().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment