Lines Matching refs:Progress
1 # Progress chapter
16 Progress(options: ProgressOptions)
97 …rsal-attributes-background.md),直接添加在Progress组件上,生效进度条的底色。如需设置整个Progress组件的背景色,需要在外层容器上添加background…
324 Text('Linear Progress').fontSize(9).fontColor(0xCCCCCC).width('90%')
325 Progress({ value: 10, type: ProgressType.Linear }).width(200)
326 …Progress({ value: 20, total: 150, type: ProgressType.Linear }).color(Color.Grey).value(50).width(2…
329 Text('Eclipse Progress').fontSize(9).fontColor(0xCCCCCC).width('90%')
331 Progress({ value: 10, type: ProgressType.Eclipse }).width(100)
332 …Progress({ value: 20, total: 150, type: ProgressType.Eclipse }).color(Color.Grey).value(50).width(…
335 Text('ScaleRing Progress').fontSize(9).fontColor(0xCCCCCC).width('90%')
337 Progress({ value: 10, type: ProgressType.ScaleRing }).width(100)
338 Progress({ value: 20, total: 150, type: ProgressType.ScaleRing })
345 Progress({ value: 20, total: 150, type: ProgressType.ScaleRing })
348 Progress({ value: 20, total: 150, type: ProgressType.ScaleRing })
353 Text('Ring Progress').fontSize(9).fontColor(0xCCCCCC).width('90%')
355 Progress({ value: 10, type: ProgressType.Ring }).width(100)
356 Progress({ value: 20, total: 150, type: ProgressType.Ring })
361 Text('Capsule Progress').fontSize(9).fontColor(0xCCCCCC).width('90%')
363 Progress({ value: 10, type: ProgressType.Capsule }).width(100).height(50)
364 Progress({ value: 20, total: 150, type: ProgressType.Capsule })
392 Progress({ value: 70, total: 100, type: ProgressType.Ring })
397 Progress({ value: 70, total: 100, type: ProgressType.Ring })
418 Progress({ value: 0, total: 100, type: ProgressType.Ring })
423 Progress({ value: 30, total: 100, type: ProgressType.Ring })
444 Progress({ value: 100, total: 100, type: ProgressType.Capsule }).width(100).height(50)
480 Progress({ value: this.value, total: 100, type: ProgressType.Linear })
484 Progress({ value: this.value, total: 100, type: ProgressType.Linear })
566 …Progress({ value: this.currentValue, total: 3, type: ProgressType.Ring }).contentModifier(this.mod…
567 Button('Progress++').onClick(() => {
596 Progress({ value: 50, total: 100, type: ProgressType.Capsule }).width(100).height(50)