1
0
Fork 0
mirror of https://github.com/ArtemSBulgakov/buildozer-action.git synced 2024-08-16 10:09:52 +02:00
gh-buildozer-action/test_app/main.kv

12 lines
256 B
Text
Raw Normal View History

2020-06-23 14:16:47 +02:00
BoxLayout:
orientation: "vertical"
Label:
id: hello_label
text: "Hello World"
on_text: if len(self.text) > 30: self.text = "Stop clicking!"
Button:
text: "Click me!"
on_release: hello_label.text += "!"