first commit
This commit is contained in:
commit
417e54da96
5696 changed files with 900003 additions and 0 deletions
Binary file not shown.
15
kivy_venv/share/kivy-examples/guide/quickstart/main.py
Normal file
15
kivy_venv/share/kivy-examples/guide/quickstart/main.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
import kivy
|
||||
kivy.require('1.0.6') # replace with your current kivy version !
|
||||
|
||||
from kivy.app import App
|
||||
from kivy.uix.button import Button
|
||||
|
||||
|
||||
class MyApp(App):
|
||||
|
||||
def build(self):
|
||||
return Button(text='Hello World')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
MyApp().run()
|
Loading…
Add table
Add a link
Reference in a new issue