Don’t get me wrong on the whole Ionic is great but sometimes it is shear frustration.
ion-option is a good example -
<ion-item>
<ion-label>Gender</ion-label>
<ion-select [(ngModel)]="gender">
<ion-option value="f">Female</ion-option>
<ion-option value="m">Male</ion-option>
</ion-select>
</ion-item>
On the iphone the ion-option displays approx. only 16 characters. Try as I might I cannot change the font-size to allow more characters - it is forcing me to amend what is being displayed.
I just hate it when things which should be simple are impossible or difficult to achieve.