UNPKG

893 BTypeScriptView Raw
1import { View } from '../core/view';
2
3/**
4 * Represents a UI widget which displays a progress indicator hinting the user for some background operation running.
5 */
6export class ActivityIndicator extends View {
7 /**
8 * Gets the native [android widget](http://developer.android.com/reference/android/widget/ProgressBar.html) that represents the user interface for this component. Valid only when running on Android OS.
9 */
10 android: any /* android.widget.ProgressBar */;
11
12 /**
13 * Gets the native iOS [UIActivityIndicatorView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIActivityIndicatorView_Class/index.html) that represents the user interface for this component. Valid only when running on iOS.
14 */
15 ios: any /* UIActivityIndicatorView */;
16
17 /**
18 * Gets or sets a value indicating whether the widget is currently displaying progress.
19 */
20 busy: boolean;
21}