test-kivy-app/kivy_venv/share/kivy-examples/demo/showcase/data/screens/buttons.kv

27 lines
527 B
Plaintext
Raw Permalink Normal View History

2024-09-15 12:12:16 +00:00
ShowcaseScreen:
name: 'Buttons'
Button:
size_hint_y: None
height: '48dp'
text: 'Button normal'
Button:
size_hint_y: None
height: '48dp'
text: 'Button down'
state: 'down'
Button:
size_hint_y: None
height: '48dp'
text: 'Button disabled'
disabled: True
Button:
size_hint_y: None
height: '48dp'
text: 'Button down disabled'
state: 'down'
disabled: True