ActivityIndicator

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

<ActivityIndicator>はバックグランドで処理中であることをユーザーに示すUIコンポーネントです。


<ActivityIndicator busy="true" @busyChange="onBusyChanged" />

Props

名前説明
busyBooleanインディケーターがアクティブかどうかを取得・設定します。値がtrueのときにインディケーターがアクティブになります。

Events

名前説明
busyChangebusyプロパティが変更されたときに通達されます。

Native component

AndroidiOS
android.widget.ProgressBar (indeterminate = true)UIActivityIndicatorView
Contributors