I need to make a footer with left side area to show the ‘back’ button and right side area to have a fixed image/text so I have tried with this markup :
<ion-footer-bar align-title="right" class="bar footer">
<div class="row">
<div class="col">
<ion-nav-bar>
<ion-nav-back-button class="button-clear">
<i class="ion-arrow-left-c"></i>
</ion-nav-back-button>
</ion-nav-bar>
</div>
<div class="col-10 text-right">
<div class="row">
<div class="col">
<div class="footer-text">
copyright 2015...
</div>
</div>
<div class="col">
<div class="logo-footer nav-image">
</div>
</div>
</div>
</div>
</div>
</ion-footer-bar>
But the footer no longer shows up and I get errors about “Controller ‘ionNavBar’, required by directive ‘ionNavTitle’, can’t be found!”