mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import { View } from '../core/view';
|
|
import { Property } from '../core/properties';
|
|
import { Color } from '../../color';
|
|
|
|
/**
|
|
* Represents a switch component.
|
|
*
|
|
* @nsView Switch
|
|
*/
|
|
export class Switch extends View {
|
|
/**
|
|
* String value used when hooking to checkedChange event.
|
|
*
|
|
* @nsEvent {PropertyChangeData} checkedChange
|
|
*/
|
|
public static checkedChangeEvent: string;
|
|
|
|
/**
|
|
* Gets the native [android widget](http://developer.android.com/reference/android/widget/Switch.html) that represents the user interface for this component. Valid only when running on Android OS.
|
|
*/
|
|
android: any /* android.widget.Switch */;
|
|
|
|
/**
|
|
* Gets the native iOS [UISwitch](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UISwitch_Class/) that represents the user interface for this component. Valid only when running on iOS.
|
|
*/
|
|
ios: any /* UISwitch */;
|
|
|
|
/**
|
|
* Gets or sets if a switch is checked or not.
|
|
*
|
|
* @nsProperty
|
|
*/
|
|
checked: boolean;
|
|
|
|
/**
|
|
* Gets or sets the background color of the Switch when it is turned off.
|
|
*
|
|
* @nsProperty
|
|
*/
|
|
offBackgroundColor: Color;
|
|
}
|
|
|
|
/**
|
|
* Represents the observable property backing the checked property of each Switch instance.
|
|
*/
|
|
export const checkedProperty: Property<Switch, boolean>;
|