mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
33 lines
1.4 KiB
TypeScript
33 lines
1.4 KiB
TypeScript
/**
|
|
* Contains the ActivityIndicator class, which represents a widget for showing that something is currently busy.
|
|
*/
|
|
declare module "ui/activity-indicator" {
|
|
import view = require("ui/core/view");
|
|
import dependencyObservable = require("ui/core/dependency-observable");
|
|
|
|
/**
|
|
* Represents a UI widget which displays a progress indicator hinting the user for some background operation running.
|
|
*/
|
|
export class ActivityIndicator extends view.View {
|
|
/**
|
|
* Represents the busy property of the ActivityIndicator class.
|
|
*/
|
|
public static busyProperty: dependencyObservable.Property;
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
android: any /* android.widget.ProgressBar */;
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
ios: any /* UIActivityIndicatorView */;
|
|
|
|
/**
|
|
* Gets or sets a value indicating whether the widget is currently displaying progress.
|
|
*/
|
|
busy: boolean;
|
|
}
|
|
}
|