Add Kivy (#1264)
* Create Kivy.py * Update readme.md * Remove one newline
This commit is contained in:
13
k/Kivy.py
Normal file
13
k/Kivy.py
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import kivy
|
||||||
|
kivy.require('1.0.6')
|
||||||
|
|
||||||
|
from kivy.app import App
|
||||||
|
from kivy.uix.label import Label
|
||||||
|
|
||||||
|
|
||||||
|
class MyApp(App):
|
||||||
|
def build(self):
|
||||||
|
return Label(text='Hello World')
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
MyApp().run()
|
||||||
@@ -495,6 +495,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib
|
|||||||
* [Kipple](k/Kipple.kipple)
|
* [Kipple](k/Kipple.kipple)
|
||||||
* [Kitanai](k/Kitanai)
|
* [Kitanai](k/Kitanai)
|
||||||
* [Kitten](k/Kitten.ktn)
|
* [Kitten](k/Kitten.ktn)
|
||||||
|
* [Kivy](k/Kivy.py)
|
||||||
* [Koberi C](k/Koberi%20C.koberice)
|
* [Koberi C](k/Koberi%20C.koberice)
|
||||||
* [Kotlin Script](k/Kotlin%20Script.kts)
|
* [Kotlin Script](k/Kotlin%20Script.kts)
|
||||||
* [Kotlin](k/Kotlin.kt)
|
* [Kotlin](k/Kotlin.kt)
|
||||||
|
|||||||
Reference in New Issue
Block a user