test-kivy-app/kivy_venv/share/kivy-examples/kv/app_layout.kv
2024-09-15 15:12:16 +03:00

24 lines
411 B
Plaintext

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'