import { Directive, HostListener, ElementRef, Injector } from '@angular/core'; import { NG_VALUE_ACCESSOR } from '@angular/forms'; import { ValueAccessor, setIonicClasses } from '@ionic/angular/common'; @Directive({ selector: 'ion-checkbox,ion-toggle', providers: [ { provide: NG_VALUE_ACCESSOR, useExisting: BooleanValueAccessorDirective, multi: true, }, ], }) export class BooleanValueAccessorDirective extends ValueAccessor { constructor(injector: Injector, el: ElementRef) { super(injector, el); } writeValue(value: boolean): void { this.elementRef.nativeElement.checked = this.lastValue = value; setIonicClasses(this.elementRef); } @HostListener('ionChange', ['$event.target']) _handleIonChange(el: HTMLIonCheckboxElement | HTMLIonToggleElement): void { this.handleValueChange(el, el.checked); } }