kivy/examples/application/app_with_kv.py

26 lines
605 B
Python
Raw Normal View History

2011-06-19 17:42:40 +00:00
'''
Application built from a .kv file
==================================
2011-06-19 17:42:40 +00:00
This shows how to implicitly use a .kv file for your application. You
should see a full screen button labelled "Hello from test.kv".
After Kivy instantiates a subclass of App, it implicitly searches for a .kv
file. The file test.kv is selected because the name of the subclass of App is
TestApp, which implies that kivy should try to load "test.kv". That file
contains a root Widget.
2011-06-19 17:42:40 +00:00
'''
import kivy
kivy.require('1.0.7')
from kivy.app import App
2011-06-19 17:42:40 +00:00
class TestApp(App):
pass
if __name__ == '__main__':
TestApp().run()