-
-
Save jose1711/e578f669beda2c194b3745a40f0a40dc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
from kivy.app import App | |
from kivy.uix.label import Label | |
from kivy.uix.slider import Slider | |
from kivy.uix.boxlayout import BoxLayout | |
from kivy.uix.gridlayout import GridLayout | |
from kivy.uix.floatlayout import FloatLayout | |
from kivy.lang import Builder | |
class MyApp(App): | |
def build(self): | |
return Builder.load_file('my.kv') | |
MyApp().run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment