Kivy Sample Code
product
Test code
Main.py
import kivy
kivy.require('1.9.0') #replace with your kivy version
from kivy.app import App
from kivy.uix.label import Label
class Testapp(App):
def build(self):
return Label(text="hello world")
if __name__ == "__main__":
Testapp().run()
Comments
Post a Comment