I have the following code. It works fine in browser, but doesn’t work on Android emulator or device. The click event doesn’t get triggered there. I am using Ionic 2 RC3. Does anybody know if it is a bug or by design? How can I work around it? Thanks.
<ion-item>
<ion-label fixed>Name</ion-label>
<ion-input type="text" [(ngModel)]="ingredient.name"></ion-input>
<ion-icon name="add" (click)="addIngredient()" item-right color="primary"></ion-icon>
</ion-item>