Hi,
Have you ever head about this strange bug I got on IOS (using online build of phonegab) only, it’s not present when developing on chrome
I have a side-menu application with a header (initially generated using ionic cli).
It works perfectly if I scrool the content from the middle or the left of the screen (used in portrait).
But if I try to scroll content from the really left part (maybe 20-30px from the left side) the content become white until I release it, and more, the header left button no longer works.
Strangely (again), the bug is not present on the homepage, maybe because this page has not left button in its header, only the menu button which is not present on other “sub” pages
Here is the code of one of the sub page:
<ion-view id="group-create" cache-view="false" view-title="New group">
<ion-nav-buttons side="left">
<a ui-sref="app.home" class="button button-icon ion-chevron-left"></a>
</ion-nav-buttons>
<div class="main row has-header">
<div class="col">
<error-message></error-message>
<form method="post" ng-submit="submit()" name="groupForm" error-field="error">
<div class="padding">
<label class="item item-input">
<input type="text" placeholder="Establishment name" name="name" ng-model="name" autocomplete="off" required>
</label>
</div>
<div class="padding text-center position">
<div>
<span ng-show="position">{{position.coords.latitude | number:4}}, {{position.coords.longitude | number:4}}</span>
</div>
<button type="button" class="button button-block button-calm" ng-click="getCurrentPos()">Current position</button>
</div>
<div class="padding">
<button type="submit" ng-disabled="!position || groupForm.$invalid" class="button button-block button-positive">Create</button>
</div>
</form>
</div>
</div>
</ion-view>
Thanks