How to set size to CircularProgressIndicator?

后端 未结 7 1398
太阳男子
太阳男子 2020-12-08 13:01

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

7条回答
  •  醉梦人生
    2020-12-08 13:27

    This could be useful

    Container(
              width: 50.0,
              height: 20.0,
              child: (CircularProgressIndicator(
                valueColor: AlwaysStoppedAnimation(
                  Colors.green,
                ),
                backgroundColor: Colors.red,
                value: 0.2,
              ))),
    

提交回复
热议问题