繁体   English   中英

我想在 Flutter 中将边框颜色赋予线性百分比指示器

[英]I want to give border Color to Linear percent indicator in Flutter

我试图通过使用容器为线性进度指示提供边框,但它对我不起作用。这是代码。

Container(
  width: Get.width*0.8,
  decoration: BoxDecoration(
    border: Border.all(
      color: Colors.black
    ),
  ),
  child: LinearPercentIndicator(
    // width: Get.width*0.8,
    lineHeight:Get.height*0.04,
    percent: percent/100,
    backgroundColor: Colors.grey,
    progressColor: AppColors.orangeTextColor,
    center: Text(
      percent.toString() + "%",
      style: TextStyle(
        fontSize: 12.0,
        fontWeight: FontWeight.w600,
        color: Colors.black
      ),
    ),
  ),
),

这是 output:

在此处输入图像描述

LinearPercentIndicator带有EdgeInsets.symmetric(horizontal: 10.0)的默认填充。 像这样将其更改为零将修复它:

LinearPercentIndicator(
        padding: EdgeInsets.zero,

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM