I’m trying to a form without grid where you have 2 components on the same line. I would appreciate if you have some idea about that.
here is how I will like to have.
<ion-item-group>
<ion-item>
<ion-label>Mobile Number</ion-label>
<!-- 2 input tags suppose to show in the same line -->
<ion-input placeholder="coountry code"/> - <ion-input placeholder="phone number"/>
</ion-item>
</ion-item-group>
Even if you do get this to lay out as you want, I think it’s going to be weird UX. I would stick with just having one input and parsing out the country code separately if you need it in the controller code.
What I would like is: user selects a country like “Germany” and the country code “+49” input “readonly” is filled automatically and user should enter only phone number “894755959”.
country code plus phone number need to be in the same line