HarmonyOS Progress 怎样自定义圆角大小

Progress 怎样自定义圆角大小ProgressType.Linear怎么实现大小16x8 圆角2的效果。

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple

参考demo:

// xxx.ets
@Entry
@Component
struct ProgressExample {
  build() {
    Column({ space: 15 }) {
      Text('Linear Progress').fontSize(9).fontColor(0xCCCCCC).width('90%')
      Progress({ value: 20, total: 100, type: ProgressType.Linear })
        .width(200)
        .backgroundColor('#B3E54C')
        .style({ strokeRadius: 0, strokeWidth: 100 ,})
        .color('#917AF9')
        .borderColor('#00000000')
        .borderRadius(20)
        .clip(true)
    }.width('100%').margin({ top: 30 })
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
自定义子 window 大小限制
1705浏览 • 1回复 待解决
自定义弹窗大小如何自适应内容
2533浏览 • 1回复 待解决
如何给自定义弹框加上圆角背景框
2086浏览 • 1回复 待解决
怎样实现一个自定义播放器?
368浏览 • 1回复 待解决
HarmonyOS bindSheet如何修改圆角大小
292浏览 • 1回复 待解决
自定义弹窗自定义转场动画
1157浏览 • 1回复 待解决
HarmonyOS 自定义键盘
247浏览 • 1回复 待解决