/usr/share/kivy-examples/kv/app_layout.kv is in python-kivy-examples 1.9.1-1build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | BoxLayout:
Button:
id: bswitch
BoxLayout:
orientation: 'vertical' if bswitch.state == 'down' else 'horizontal'
Button:
id: btn1
text: 'Button 1'
Button:
text: btn1.state
Button:
text: 'Button 3'
Button:
text: 'Button 4'
Button:
text: 'Button 5'
|