commiting in case the kivy trial fails

This commit is contained in:
shockrah
2020-03-16 19:36:10 -07:00
parent 71e9d8adad
commit 40ca9a9674
424 changed files with 24252 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#:kivy 1.8.0
<SpecialButton>:
canvas:
Color:
rgba: 1.0, 0.0, 0.0, 1.0
Rectangle:
pos: self.pos
size: (self.size[0]/4, self.size[1]/4)

View File

@@ -0,0 +1,6 @@
#:kivy 1.8.1
#:include button.kv
<CustomLayout>:
SpecialButton:
text: 'Includes!'

View File

@@ -0,0 +1,19 @@
from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.button import Button
class SpecialButton(Button):
pass
class CustomLayout(BoxLayout):
pass
class TestApp(App):
pass
if __name__ == '__main__':
TestApp().run()

View File

@@ -0,0 +1,5 @@
#:kivy 1.8.1
#:include layout.kv
#:include force button.kv
CustomLayout: