Hello
i have problem: when i add simple input textfield into view, with border and placeholder and then when i enter to the field and try to scroll screen to top, it causes border disappering and field looks ugly.
I made a video with this problem: https://www.youtube.com/watch?v=Y0csZSHaei0
Same thing happens on android and iphone.
My source code is “ionic start myApp sidemenu” + modified template: search.html:
<ion-view title="Search">
<ion-nav-buttons side="left">
<button menu-toggle="left"class="button button-icon icon ion-navicon"></button>
</ion-nav-buttons>
<ion-content class="has-header">
<form>
<div class="list">
<input type="text" placeholder="some input..." style="border:1px solid black">
</div>
</form>
</ion-content>
</ion-view>
Thanks in advice.