Need to prevent backbutton with text in nav title bar

In my project i need to use the default tile icon but when i navigate in the body of the page to next page i am getting the backbutton.

Need my Header like this

image

But getting my Header like this.

image .

Please help me to fix it

Can you paste your code for the header?

If you’re using ionNavBar you should remove <ion-nav-back-button></ion-nav-back-button> from ion-nav-bar

Set enable-menu-with-back-views to true on the sidemenu to prevent the menu icon from hiding when you navigate:

<ion-side-menus enable-menu-with-back-views="true">

Or do you only want the back button hidden on specific pages?

2 Likes

Superb. Your code works perfectly. Thanks a lot

1 Like