freechat/freechat-client/share/kivy-examples/demo/showcase/data/screens/buttons.kv
2020-03-16 19:36:10 -07:00

27 lines
501 B
Plaintext

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