Progress

This is an overview of the most common usage of Progress. For more information about the available properties, methods, or events, head over to the complete API documentation for Progress.

<Progress> is a UI component that shows a bar to indicate the progress of a task.

See also: ActivityIndicator.


<Progress :value="currentProgress" />

Props

NameTypeDescription
valueNumberGets or sets the current value of the progress bar. Must be within the range of 0 to maxValue.
maxValueNumberGets or sets the maximum value of the progress bar.
Default value: 100.

Events

NameDescription
valueChangeEmitted when the value property changes.

Native Component

AndroidiOS
android.widget.ProgressBar (indeterminate = false)UIProgressView
Contributors