So, I want to add circle progress indicator around this image. and that progress indicator shows progress as per dynamic value. I mean the progress is dynamic not fixed. So, How can we do that ?
How can we show custom progress indicator progress as per dynamic data in flutter?
686 views Asked by wolfsoft Developer At
4
There are 4 answers
0
On
Step 1: Create Dialog
showAlertDialog(BuildContext context){
AlertDialog alert=AlertDialog(
content: new Row(
children: [
CircularProgressIndicator(),
Container(margin: EdgeInsets.only(left: 5),child:Text("Custom Widget" )),
],),
);
showDialog(barrierDismissible: false,
context:context,
builder:(BuildContext context){
return alert;
},
);
}
Step 2: Call it
showAlertDialog(context);
Step 3: Dismiss Dialog
Navigator.pop(context);
1
On
Try to use this, i'hpe your problem will be solved!
SmartDialog.showLoading(builder: (context) {
return Container(
decoration: BoxDecoration(
color: BrandColors.kWhite,
borderRadius: BorderRadius.circular(10)
),
height: 150,
width: 150,
child: Lottie.asset(
'assets/lottie/loading.json',
// height: 50,
// width: 100,
repeat: false,
reverse: false,
),
);
});

You can use Percent Indicator package to achieve dynamic loader based on your content.
For Example :
Try to wrap the circular indicator out side your image.