Created
September 6, 2016 14:23
-
-
Save wildlux/6d0548059e2d07ae82b72ce0f4d06f70 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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