#鸿蒙学习大百科#如何实现胶囊形的进度条?

如何实现胶囊形的进度条?

HarmonyOS
2024-10-25 09:54:25
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
朝花惜拾丶
@Entry
@Component
struct Index {
  build() {
    Column() {
      Progress({ value: 10, total: 150, type: ProgressType.Capsule }).width(100).height(50)
      Progress({ value: 20, total: 150, type: ProgressType.Capsule }).width(50).height(100).color(Color.Grey)
      Progress({ value: 50, total: 150, type: ProgressType.Capsule }).width(50).height(100).color(Color.Blue).backgroundColor(Color.Black)
    }
    .width('100%')
    .height('100%')
    .justifyContent(FlexAlign.Center)
  }
}
分享
微博
QQ
微信
回复
2024-10-25 15:55:21
相关问题
如何实现带刻度进度条
490浏览 • 1回复 待解决
如何实现带图片进度条
704浏览 • 1回复 待解决
Progress进度条如何实现渐变色?
581浏览 • 1回复 待解决
弧形进度条实现,有人知道方法吗?
659浏览 • 1回复 待解决
基于Progress组件进度条
432浏览 • 1回复 待解决
服务卡片进度条如何停止动画
8754浏览 • 1回复 待解决
如何实现一个月食样式进度条
273浏览 • 1回复 待解决
#鸿蒙学习大百科#如何实现ui优化?
126浏览 • 1回复 待解决
实现一个发送进度条通知方法
295浏览 • 1回复 待解决