I'm using Ionic Chip. But, the problem when I want to write color attribute with condition in [ngStyle]
tag.
Works Fine
<ion-chip color="warning"> ABC Heading </ion-chip>
Problem
<ion-chip [ngStyle]="{'color': item.Valid == true ? 'success' : 'warning'}"> {{item.Valid == true ? 'Valid' : 'Invalid'}} </ion-chip>