本文介绍了如何将大小设置为 CircularProgressIndicator?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试为我的应用程序制作一个加载屏幕,我正在使用 CircularProgressIndicator
小部件,但我想知道是否有办法使它的高度和宽度更大,它太小.
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 height and width, it's too small.
那么,有人可以帮我吗?
So, could someone help me with this?
推荐答案
您可以将 CircularProgressIndicator
包装在 SizedBox
小部件中
You can wrap your CircularProgressIndicator
inside a SizedBox
widget
@override
Widget build(BuildContext context) {
return Container(
child: Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
SizedBox(
child: CircularProgressIndicator(),
height: 200.0,
width: 200.0,
),
SizedBox(
child: CircularProgressIndicator(),
height: 50.0,
width: 50.0,
),
SizedBox(
child: CircularProgressIndicator(),
height: 10.0,
width: 10.0,
)
],
),
),
);
这篇关于如何将大小设置为 CircularProgressIndicator?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!