Back button and also menu buttons in the same time

Hello!
I am trying to build an app using Ionic, and I am kind of stuck.
I want to back button to appear on a page and also on the same page I want to have 2 menu buttons(one on the left side and the other on the right side).
I know how to disable the back buttons on the other pages by using :
$ionicHistory.nextViewOptions({
disableBack: true
});
Is this possible?

We disable the menu toggle but you can enable it.

http://ionicframework.com/docs/api/directive/ionSideMenus/

1 Like

Thank you! I have managed to solve it by my self in the meanwhile. I’ve created my own back button, when I click on it sends me to my previews view.
I will also try the default option, and I think it is safer to use the default one