Hi, I have a problem with my app when I am on iOS, here is my config
Ionic:
ionic (Ionic CLI) : 4.1.1 (C:\Users\XXXXXX\AppData\Roaming\npm\node_modules\ionic)
Ionic Framework : ionic-angular 3.9.2
@ionic/app-scripts : 3.2.0
System:
NodeJS : v8.9.4 (C:\Program Files\nodejs\node.exe)
npm : 6.4.0
OS : Windows 10
My tab menu has this configuration:
<ion-tabs [selectedIndex]="mySelectedIndex">
<ion-tab [root]="tab1Root" tabIcon="home"></ion-tab>
<ion-tab [root]="tab2Root" tabIcon="card"></ion-tab>
<ion-tab [root]="tab3Root" tabIcon="heart" tabBadge="{{$numItemsInWishList > 0 ? $numItemsInWishList : '' }}" tabBadgeStyle="dark"></ion-tab>
<ion-tab [root]="tab4Root" tabIcon="basket" tabBadge="{{$numItemsInCart > 0 ? $numItemsInCart : '' }}" tabBadgeStyle="dark"></ion-tab>
<ion-tab [root]="tab5Root" tabIcon="contact"></ion-tab>
</ion-tabs>
When I use android style, all this tabIcons shows properly, but when I select a ios profie in chrome debugger tools, only show me the selected tab.
I have inspected these tabs, and I think it’s due for it inserting a outline ios style when its not the selected tab, and it’s not currently available in ionicons 4.4.1 this outline serie, is it? It’s applying directly the outline style that’s not available.
How can I change this? Someone can help me, please?
Regards,
Martí.