mirror of https://github.com/kivy/kivy.git
17 lines
334 B
Plaintext
17 lines
334 B
Plaintext
|
#:kivy 1.0
|
||
|
|
||
|
<Controller>:
|
||
|
label_wid: my_custom_label
|
||
|
|
||
|
BoxLayout:
|
||
|
orientation: 'vertical'
|
||
|
padding: 20
|
||
|
|
||
|
Button:
|
||
|
text: 'My controler info is : ' + root.info
|
||
|
on_press: root.do_action()
|
||
|
|
||
|
Label:
|
||
|
id: my_custom_label
|
||
|
text: 'My label before button press'
|