freechat/freechat-client/share/kivy-examples/kv/ids/kv_and_py/test.kv
2020-03-16 19:36:10 -07:00

12 lines
276 B
Plaintext

#:kivy 1.8.0
RootWidget:
BoxLayout:
orientation: 'vertical'
Switch:
id: my_switch
on_active: root.first_function(self.active)
Label:
id: my_label
text: 'This text will be changed by the python file'