CircularProgressIndicator
创建一个圆形进度条,直接 new CircularProgressIndicator() 即可。当然也可以添加一些属性
CircularProgressIndicator(
//进度条进度
value: 0.5,
//进度条背景颜色
backgroundColor:Colors.transparent,
//进度条颜色
valueColor:new AlwaysStoppedAnimation<Color>(Colors.blue),
//进度条粗细
strokeWidth: 4.0,
)
LinearProgressIndicator
同上,少了 strokeWidth 属性而已。