Currently, I am encountering a problem with the footer-bar
on a specific page. When an input field is focused, the keyboard pops up and causes the footer to overlap with it.
HTML Code Snippet:
<ion-view>
<ion-content>
<!-- Content goes here -->
</ion-content>
<div class="bar dash-footer-col dash-footer bar-footer">
<div class="row">
<div class="col dash-footer-col mycharts-footer-col footertopredboarder" <img src="img/icons/1.png" ng-click="go('home')">
<div>
<h5>HOME</h5>
</div>
</div>
<div class="col dash-footer-col mycharts-footer-col footer-top-boarder " ng-click="go('profile')">
<img src="img/icons/2.png">
<div>
<h5>PROFILE</h5>
</div>
</div>
<div class="col dash-footer-col mycharts-footer-col footer-top-boarder" style="padding-top:0px;" ng-click="go('contact')">
<img class="weather-icon" src="img/icons/3.png">
<div style="height:1em;">
<h5>CONTACT</h5>
</div>
</div>
<div class="col dash-footer-col mycharts-footer-col footer-top-boarder" ng-click="go('logout')">
<img src="img/icons/4.png">
<div>
<h5>LOGOUT</h5>
</div>
</div>
</div>
</div>
</ion-view>
I attempted to address this issue by including the following line in app.js
. However, although the footer now disappears, there is still a flickering problem present. Are there any alternative solutions to hide the footer when the keyboard appears? Any assistance would be greatly appreciated. Thank you.
Gratefully,