I want to create Container and on its border I want to show a Ring Progress Bar how can I implement it can anybody help me
Like given below Image:
The yellow color circle is a container and I want to show the progress bar on the container border and in the middle I want to show progress percentage
2
Answers
Here’s a minimal code that achieves something very close to what you want using
CustomPaint
andTweenAnimationBuilder
.Screen from dartpad:
Code:
Credits to this great article: https://medium.com/@callumdixon941/creating-awesome-animated-custom-borders-in-flutter-with-canvas-90cf755cc29f
You can make use of the flutter circularProgressIndicator class as given in the example here : https://api.flutter.dev/flutter/material/CircularProgressIndicator-class.html