Lines Matching refs:Progress
1 # Progress chapter
3 The **Progress** component represents a progress indicator that displays the progress of content lo…
16 Progress(options: ProgressOptions)
97 …Progress** component, it changes the background color of the progress indicator itself. To set the…
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 })
391 Progress({ value: 70, total: 100, type: ProgressType.Ring })
396 Progress({ value: 70, total: 100, type: ProgressType.Ring })
419 Progress({ value: 0, total: 100, type: ProgressType.Ring })
424 Progress({ value: 30, total: 100, type: ProgressType.Ring })
446 Progress({ value: 100, total: 100,type: ProgressType.Capsule }).width(100).height(50)
472 Progress({value: this.value, total: 100, type:ProgressType.Linear})
476 Progress({value: this.value, total: 100, type:ProgressType.Linear})
554 …Progress({ value: this.currentValue, total: 3, type: ProgressType.Ring}).contentModifier(this.modi…
555 Button('Progress++').onClick(()=>{
584 Progress({ value: 50, total: 100, type: ProgressType.Capsule }).width(100).height(50)