I have the nastiest issue:
My Navbar is currently part of the View, as such:
<ion-view animation="no-animation" hide-back-button="true">
<ion-nav-bar class="bar-someclass" align-title="center">
<ion-nav-title style="display:block!important">{{Variable}}</ion-nav-title>
</ion-nav-bar>
</ion-view>
Works perfectly.
But when I add a ion-nav-buttons
to the left or right side, the Nav-Title won’t be shown. Inspecting it, I can see that two styles are being added dynamically, which happen to cause the Nav-Title to not show properly.
<div class="title title-center header-item" style="left: 558px; right: 558px;">
<span class="nav-bar-title ng-binding">{{Variable}</span>
</div>
How to fix this?
Edit: It does work as expected when I place the button to the Right.