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>はタスクの進捗を示すバーを表示するUIコンポーネントです。

こちらもご覧ください: ActivityIndicator.


<Progress :value="currentProgress" />

Props

名前説明
valueNumberプログレスバーの現在の値を取得・設定します。値は0からmaxValueまでになる必要があります。
maxValueNumberプログレスバーの最高値を取得・設定します。
デフォルトの値: 100.

Events

名前説明
valueChangevalueプロパティが変更した時に発火します。

Native Component

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