mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
chore: hidden example in toolbox
This commit is contained in:
@ -26,7 +26,8 @@ export class VisibilityVsHiddenModel extends Observable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
toggleHidden() {
|
toggleHidden() {
|
||||||
this.notifyPropertyChange('currentHidden', !this.currentHidden);
|
this.currentHidden = !this.currentHidden;
|
||||||
|
this.notifyPropertyChange('currentHidden', this.currentHidden);
|
||||||
this.notifyPropertyChange('currentHiddenType', `Current Hidden: ${this.currentHidden}`);
|
this.notifyPropertyChange('currentHiddenType', `Current Hidden: ${this.currentHidden}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user