You are reading docs for v1.3.1, click here for the latest version.
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 컴포넌트는 백그라운드에서 동작하는 것을 표시하는 프로그레스 인디케이터를 추가하고 사용자가 일시중지(pause) 할수 있게 도와줍니다.


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

Props

이름타입설명
busyBooleantrue 일때 인디케이터가 활성화됨.

이벤트

이름설명
busyChangebusy 프로퍼티가 바뀔때 발생(Emit)

네이티브 컴포넌트

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