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> is a UI component that shows a progress indicator signalling to the user of an operation running in the background.


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

Props

NameTypeDescription
busyBooleanGets or sets whether the indicator is active. When true, the indicator is active.

Events

NameDescription
busyChangeEmitted when the busy property is changed.

Native component

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