I'm building the app in Ionic 3 and I'm navigating the pages with this.navCtrl.push/pop()
functions.
But whenever I push()
or pop()
, the titles are got overlapped.
attached the screenshot.
Any suggestions?
Thanks
Here is the header code snippets.
<ion-header>
<ion-navbar [hideBackButton]="true" padding>
<h6 class="navbar--title">Select acquisitions</h6>
<ion-buttons end>
<button (click)="goBack()" class="navbar--back"><i class="icon-chevron-left"></i></button>
</ion-buttons>
</ion-navbar>
</ion-header>