Lines Matching refs:indicator
4 The **Progress** component is used to provide an indicator that shows the progress of an operation.…
9 You can create a progress indicator by calling the following API:
16 …**total** indicates the total progress, and **type** indicates the style of the progress indicator.
19 …4, total: 100, type: ProgressType.Linear }) // Create a linear progress indicator whose total prog…
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…
111 @State progressValue: number = 0 // Set the initial progress of the progress indicator to 0.