Limzee
1
Using this code i get a margin between the icon and input and i cant find a way to get rid of it.
I cant find it in the inspector either.
<ion-item>
<ion-icon item-start name="icon"></ion-icon>
<ion-input type="text" placeholder="asdasda"></ion-input>
</ion-item>
<ion-item>
is heavily formatted. If you want a lot of control, it might be better to avoid it. That said, you could try something like
<ion-item>
<div item-start>
<ion-icon ...
<ion-input ...
</div>
</ion-item>
So both icon and input are in the same placement area.