In my project I want to use an 'ion-item' with a label and an icon. Something like that:
<ion-item>
<ion-label>Itens</ion-label>
<ion-label><i class="icon-search"></i></ion-label>
</ion-item>
The problem is that IOS already use an icon in 'ion-item' by default. I don't want to change button mode just for android, I'd like still use native elements styles.
My question is: Is there any way to hide/show elements according to platform?
I saw someone talking about 'showWhen' property in Ionic 3 but apparently, is not working anymore...