Hello,
I am using the latest version of ionic 4.
I am trying to use ion-toggle in the following way:
<ion-item>
<ion-label>Test</ion-label>
<ion-toggle color="warning" [(ngModel)]="testVar" (ionChange)="toggleEvent($event)"></ion-toggle>
</ion-item>
When I launch the app (testing in chrome browser) with ionic serve if I try to toggle it will do the first one, but then the entire chrome brower tab running the app freezes up.
If I use the ngModel but remove the ionChange it works continually.
If I use ionChange and remove ngModel it works continually.
Both together do not work.
Any ideas?
Thanks