系统自带进度条
有一定局限性,只能设置背景色,前景色要设置动画的颜色值,且不能自定义是否圆角等属性
// 2表示当前的值,10表示最大值
LinearProgressIndicator(
value: 2 /10,
backgroundColor: Constants().grayBgColor,
),
自定义进度条类
import 'package:flutter/material.dart';
import 'package:zetc_app/constants.dart';
/**
* 自定义进度条
*/
class ProgressComp extends StatelessWidget {
ProgressComp(
{Key key,
this.width,
this.height,
this.bgColor,
this.frColor,
this.borderRaius,
this.value=1})
: super(key: key);
// 宽度-必填
final double width;
// 高度-必填
final double height;
// 背景色
final Color bgColor;
// 前景色
final Color frColor;
// 圆角
final double borderRaius;
// 当前比例(当前值/总数值)-必填
final double value;
@override
Widget build(BuildContext context) {
return Container(
width: width ?? Constants().w120,
height