I\'m trying to make a loading screen for my application, I\'m using CircularProgressIndicator widget, but I want to know if there\'s a way to make it bigger in
CircularProgressIndicator
This is the solution, which worked for me
Center( heightFactor: 1, widthFactor: 1, child: SizedBox( height: 16, width: 16, child: CircularProgressIndicator( strokeWidth: 1.5, ), ), )