How to hide menu icon when back button visible in Ionic 5/Angular
// global css
.can-go-back {
.customMenuButton {
display: none;
}
}
You have to add the class customMenuButton to your ion menu buttons you want to hide when back button is available. Good luck!
