<ion-item>
<ion-input></ion-input>
</ion-item>
When i press the input from the phone the edges of the input tag appear and the input moves on iPhone 8
Ionic version : 4.1.0
Npm version:6.3.0
Cordova version 8.0.0
Node version :10.8.0
<ion-item>
<ion-input></ion-input>
</ion-item>
When i press the input from the phone the edges of the input tag appear and the input moves on iPhone 8
Ionic version : 4.1.0
Npm version:6.3.0
Cordova version 8.0.0
Node version :10.8.0
Try with
<ion-list>
<ion-item no-lines>
<ion-input placeholder="Text Input"></ion-input>
</ion-item>
</ion-list>
Thanks but i fixed it
for fix it add on global.scss
.native-input { position: relative; top: 6.5px; left:-5px; border: 0; outline: 0; padding: 5px; }
not work with no lines
hey, have read this post ?