How can I move the navigation icon item to the right?

How can I move the navigation icon item to the right? I tried using ion row with 2 columns (one for the back button and one for the menu icon) but then the title does not show up and the result is just odd.

Please see attached.

Thank you very much in advance :smile:

Try this:

HTML:
< ion-nav-buttons side=“right”>
< button ng-click=“toggleRightMenu()” class=“button button-icon icon ion-navicon”>
< /ion-nav-buttons>

JS:
$scope.toggleRightMenu = function()
{
$ionicSideMenuDelegate.toggleRight();
}

Wow, works perfect - thank you so much. I knew it would be easy but I didnt see this in the online docs so i went old school html layout.

Thanks so much!!!

1 Like