34 lines
646 B
Plaintext
34 lines
646 B
Plaintext
|
ShowcaseScreen:
|
||
|
name: 'CheckBoxes'
|
||
|
|
||
|
GridLayout:
|
||
|
|
||
|
cols: 3
|
||
|
spacing: '8dp'
|
||
|
size_hint: .5, None
|
||
|
height: self.minimum_height
|
||
|
|
||
|
Label:
|
||
|
text: 'Checkbox'
|
||
|
|
||
|
CheckBox:
|
||
|
size_hint_y: None
|
||
|
height: '48dp'
|
||
|
|
||
|
CheckBox:
|
||
|
size_hint_y: None
|
||
|
height: '48dp'
|
||
|
|
||
|
Label:
|
||
|
text: 'CheckBox with group'
|
||
|
|
||
|
CheckBox:
|
||
|
size_hint_y: None
|
||
|
height: '48dp'
|
||
|
group: 'g2'
|
||
|
|
||
|
CheckBox:
|
||
|
size_hint_y: None
|
||
|
height: '48dp'
|
||
|
group: 'g2'
|