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

16 lines
316 B
Plaintext
Raw Normal View History

2024-09-15 12:12:16 +00:00
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.