中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何实现胶囊形的进度条?
微信扫码分享
@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) } }