Flutter进度条组件LinearProgressIndicator

发布于 1 年前 作者 phonegap100 294 次浏览 最后一次编辑是 1 年前 来自 分享

Flutter进度条组件LinearProgressIndicator的使用

  LinearProgressIndicator(
              value: 0.2,
              valueColor: AlwaysStoppedAnimation<Color>(Colors.blue),
              backgroundColor: Color.fromRGBO(235, 235, 235, 1),
),
回到顶部