flutter 记录widget


1.进度条
new SizedBox(
  //限制进度条的高度
  height: 6.0,
  //限制进度条的宽度
  width: 200,
  child: ClipRRect(
    // 边界半径(`borderRadius`)属性,圆角的边界半径。
    borderRadius: BorderRadius.all(Radius.circular(10.0)),
    child: new LinearProgressIndicator(
      //0~1的浮点数,用来表示进度多少
        value: values,
        //背景颜色
        backgroundColor: Colors.yellow,
        //进度颜色
        valueColor: new AlwaysStoppedAnimation(Colors.red)),
  ),
)

你可能感兴趣的:(flutter,flutter,widget)