tokei/tests/data/kvlanguage.kv
rrrodzilla c5a2e375c5
added support for kvlang - https://kivy.org/doc/stable/guide/lang.html (#707)
Co-authored-by: rodzilla <roland@textnibble.com>
2021-01-29 08:01:57 +00:00

23 lines
527 B
Plaintext

# 22 lines 17 code 3 comments 2 blanks
#:kivy 2.0.0
#:import C kivy.utils.get_color_from_hex
#:import KeypadButton keypadbutton
#:include keypadbutton.kv
#:set name value
<DynamicWidgetClass>:
color: C('#27272A')
# general comment
<Keypad@GridLayout>:
width: self.minimum_width
height: self.minimum_height
size_hint: None, None
cols: 3
spacing: 6
KeypadButton:
text: '1'
disabled: root.disabled
on_press: root.dispatch('on_key_pressed', self.key_val)
# a final comment