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

16 lines
301 B
Plaintext

ShowcaseScreen:
name: 'ProgressBar'
Label:
text: 'Progression: {}%'.format(int(pb.value))
size_hint_y: None
height: '48dp'
ProgressBar:
id: pb
size_hint_x: .5
size_hint_y: None
height: '48dp'
value: (app.time * 20) % 100.