I don’t understand why my ion-icon not aligning with the floating ion-label on iOS
is there a way to make it looks like the android version?
here is my form
<form>
<ion-item>
<ion-label position="floating">Email</ion-label>
<ion-input ngModel type="email" name="email"></ion-input>
<ion-icon name="mail" slot="start"></ion-icon>
</ion-item>
<ion-item>
<ion-label position="floating">Password</ion-label>
<ion-input ngModel type="password" name="password"></ion-input>
<ion-icon name="lock" slot="start"></ion-icon>
</ion-item>
<ion-button type="submit" expand="block" color="danger" class="ion-text-uppercase ion-margin-top">Login
</ion-button>
</form>