If I have a header and subheader and a list that fills all the space on the display i can’t see the last Item on iOS. Is this a bug?
Do you have the sub header as a directive?
<ion-header-bar class="bar-positive bar-subheader">
<h1 class="title">{{myTitle}}</h1>
</ion-header-bar>
yes:
<ion-header-bar class="bar-subheader bar-light item-input-inset">
<label class="item-input-wrapper">
<i class="icon ion-ios7-search placeholder-icon"></i>
<input id="searchKey" type="search" placeholder="Search" ng-model="searchKey.name" autocorrect="off" >
<button class="button button-clear" ng-click="clearSearch()">X</button>
</label>
</ion-header-bar>
There seams to be a general sizing bug on iPhone 5S and 4S:
Thats the $ionicActionSheet on iPhone 4s
on iPhone 5s:
on Chrome on Desktop PC:
Footer Bar in Modal on iPhone 4s: (Footerbar is not shown)
iPhone 5s:
Chrome on Desktop PC:
Ok the problem seams to be in connection with the command:
StatusBar.hide();
or
ionic.Platform.fullScreen(true, false);
If you are toggling one of this commands in cordova, you are losing each time some pixels.
regards
Patrick