Lines Matching refs:progress

4 …tor that shows the progress of an operation. For details, see [Progress](../reference/apis-arkui/a…
9 You can create a progress indicator by calling the following API:
16 …ue** indicates the initial progress, **total** indicates the total progress, and **type** indicate…
19 … ProgressType.Linear }) // Create a linear progress indicator whose total progress is 100 and init…
28 Progress indicators come in five styles. When creating a progress indicator, you can specify its st…
35 …> Since API version 9, the progress indicator adaptively switches to the vertical layout if its he…
48 …// The progress indicator in the indeterminate ring style on the left: Retain its default settings…
50 // The right progress indicator in the indeterminate ring style on the right.
77 …// The progress indicator in the eclipse style on the left: Retain its default settings for the fo…
79 // The progress indicator in the eclipse style on the right: Set its foreground color to gray.
88 …>- At both ends, the progress indicator in the capsule style works in a same manner as that in th…
89 …>- In the middle part of the capsule, the progress indicator works in a same manner as the linear…
91 …>- If the height is greater than the width, the progress indicator adaptively switches to the ver…
105 In this example, the progress of the **Progress** component is updated by clicking the button. Afte…
111 @State progressValue: number = 0 // Set the initial progress of the progress indicator to 0.
131 ![progress](figures/progress.gif)