When testing my application on the xcode ios simulator for the iPhone SE 3rd gen, all my <ion-button color=“” elements are invisible. If it is just an with the default color where color=secondary (or color=danger, or whatever) is not specified, that button still is visible. The buttons are still clickable. (I was trying to get the buttons console.log their css onClick to figure out what was happening but no dice.) The buttons stay visible if I set other ion-button attributes like size=“large” or shape=“round”. The only issue seems to be color
This was found on an iphone 11 with 16.3 ios on it. Would appreciate any help
Should I just copy/pasta my whole app here? I’m not sure what’s most helpful for people to see
Example of what’s broken:
<ion-button color="primary">Primary</ion-button>
<ion-button class="testprimary" color="primary" (click)="testA($event)">Test primarey</ion-button>
<button ion-button (click)="test($event)" color="secondary">Save secondary button</button>
<ion-button class="testdanger" color="danger">Test danger</ion-button>
<button ion-button color="danger">Save danger button</button>
<ion-button size="large">Test laergwe</ion-button>
<ion-button fill="outline">Tes outline</ion-button>
<ion-button shape="round">Test rd</ion-button>```
This is what I see when I do an `npm run` and run it as a web app locally:

This is what I see on the emulator:

Alas! I wish it were that. The buttons were working great on the ios I had before. I was testing, noticed that ios 16.3 was out, downloaded that and started testing again (still using the same version from TestFlight, no code changes). I’m wondering if it’s an angular/ios thing now? I’m probably going to look at an ios forum next