Reputation: 2920
I want to implement a circular slider for a music player.
but the packages like sleek_circular_slider (https://github.com/matthewfx/sleek_circular_slider) and other packages like this are not suitable .
means for example the package above is very good in change the position but it is not possible to use it as a progressBar to show currently music duration.
I want a circular slider like default flutter Slider. because it has both onChanged method and value property which is responsible for currently position. but unfortunately I think there is not package in flutter to have both parameters. Thanks .
Upvotes: 0
Views: 2286
Reputation: 571
Faced with the similar challenge, I ended up creating a custom flare animation. The progress can then be set by the animation controller to any frame.
Upvotes: 1