Flutter - change size of a CircularProgressIndicator in a dialog window Flutter - change size of a CircularProgressIndicator in a dialog window flutter flutter

Flutter - change size of a CircularProgressIndicator in a dialog window


Had the same problem a while ago. You can achieve the result you want by using this:

  AlertDialog(      content: Column(        mainAxisAlignment: MainAxisAlignment.center,        mainAxisSize: MainAxisSize.min,        children: <Widget>[          SizedBox(            width: 150,            height: 150,            child: CircularProgressIndicator(),          ),        ],      ),    );