mirror of
				https://github.com/NativeScript/NativeScript.git
				synced 2025-11-04 21:06:45 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { View } from '../core/view';
 | 
						|
import { Property } from '../core/properties';
 | 
						|
 | 
						|
/**
 | 
						|
 * Represents a progress component.
 | 
						|
 */
 | 
						|
export class Progress 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 [UIProgressView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIProgressView_Class/) that represents the user interface for this component. Valid only when running on iOS.
 | 
						|
	 */
 | 
						|
	ios: any /* UIProgressView */;
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Gets or sets a progress current value.
 | 
						|
	 */
 | 
						|
	value: number;
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Gets or sets a progress max value.
 | 
						|
	 */
 | 
						|
	maxValue: number;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * Represents the observable property backing the value property of each Progress instance.
 | 
						|
 */
 | 
						|
export const valueProperty: Property<Progress, number>;
 | 
						|
 | 
						|
/**
 | 
						|
 * Represents the observable property backing the maxValue property of each Progress instance.
 | 
						|
 */
 | 
						|
export const maxValueProperty: Property<Progress, number>;
 |