Hey everyone, I am reaching out here as a last ditch effort. I got thrown into fixing a client’s app which is using ionic v3 and angular v4. I have been working on updates for a couple of months now and in this most recent build some of the buttons and form fields are not showing up. I reverted any scss changes I had made since the last build, and still nothing. The buttons and fields show up fine in the browser and simulator, it is just the physical device. Has anyone experienced anything like this. Testing on iOS 16.2. I am not getting any errors in the console. Here is an example, this is on basically what would be the home page of the app, the blue button shows up fine but the green one does not.
<ion-row class="large-button-row" align-items-center>
<ion-col col-6>
<button ion-button full color="dark-blue" (click)="searchTrackSystem()" large>
<ion-icon name="search"></ion-icon>
Search Track System
</button>
</ion-col>
<ion-col col-6>
<button ion-button full color="dark-green" (click)="createTrackSystem()" large>
<ion-icon name="add"></ion-icon>
Create Track System
</button>
</ion-col>
</ion-row>