Issue with "ng-show with ion-footer in iOS"

Does anyone know of any issue with ng-show in iOS.

I have a view in which I have

<ion-content></ion-content>

<ion-footer ng-show="someCondition">
</ion-footer>

It works fine on Android. However on iOS, sometimes the footer is not seen even if the condition evaluated to true.

I tried replacing ng-show with ng-if. In that case, I wasn’t able to scroll the content properly. The footer hid the content.