I thought to make one simple circular progress bar using kivy and python. I searched online documentation and GitHub repertoires, but not found single proper example explaining the concept of circular progress bar .
Like the image attached below. I thought to develop. Please anyone help me in this issue.
I've made a widget to represent what you want to achieve. There are some limitations however, precisely:
Instead of just setting the progress bar value using
.value
, you need to call theset_value
method. I am very unsure what should be done to achieve the same behaviour as in originalProgressBar
class;You have to specify the size to achieve a circle, because the object itself is an ellipse.
Here is the code, also with example usage:
Output: