We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb4ac8 commit c456a6bCopy full SHA for c456a6b
src/switch/index-common.ts
@@ -14,7 +14,12 @@ export abstract class SwitchBase extends NSSwitch {
14
// this.busy = false;
15
// }
16
}
17
-
+export const onBackgroundColorProperty = new Property<SwitchBase, Color>({
18
+ name: 'onBackgroundColor',
19
+ equalityComparer: Color.equals,
20
+ valueConverter: v => new Color(v),
21
+});
22
+onBackgroundColorProperty.register(SwitchBase);
23
// export const progressColorProperty = new CssProperty<Style, Color>({
24
// cssName: 'progress-color',
25
// name: 'progressColor',
0 commit comments