Have a very strange issue occurring here. For some reason i’m getting some additional spacing being added to my ion-card after a ion-select action-sheet appears. This only happens on Android. Is anyone else having this issue? Below is a video of what I mean
Also here is a snippet of the offending code.
<ion-row>
<ion-col>
<ion-select interface="action-sheet"
(ionChange)="calculateAndUpdate()"
[(ngModel)]="militaryExperience">
<ion-option value="regular" selected>Regular Military</ion-option>
<ion-option value="reservesNationalGuard">Reserves / National Guard</ion-option>
</ion-select>
</ion-col>
</ion-row>
</ion-grid>