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 could be useful
Container( width: 50.0, height: 20.0, child: (CircularProgressIndicator( valueColor: AlwaysStoppedAnimation( Colors.green, ), backgroundColor: Colors.red, value: 0.2, ))),