mirror of
				https://github.com/NativeScript/NativeScript.git
				synced 2025-11-04 12:58:38 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			893 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			893 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { View } from '../core/view';
 | 
						|
 | 
						|
/**
 | 
						|
 * Represents a UI widget which displays a progress indicator hinting the user for some background operation running.
 | 
						|
 */
 | 
						|
export class ActivityIndicator extends View {
 | 
						|
	/**
 | 
						|
	 * 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;
 | 
						|
}
 |