mirror of
https://github.com/ArtemSBulgakov/buildozer-action.git
synced 2024-08-16 10:09:52 +02:00
12 lines
256 B
Text
12 lines
256 B
Text
|
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 += "!"
|