I am trying below code to move icon to right side.
<ion-menu [content]="content" side= "right">
<ion-header>
<ion-toolbar>
<ion-title>Menu</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
<ion-list>
<button ion-item (click)="openPage(homePage)">
Home
</button>
<button ion-item (click)="openPage(friendsPage)">
Friends
</button>
<button ion-item (click)="openPage(eventsPage)">
Events
</button>
<button ion-item (click)="closeMenu()">
Close Menu
</button>
</ion-list>
</ion-content>
</ion-menu>
But when i am trying with side= "right" , The list is coming from right side but hamburger menu icon is moving to right. Is there any way to achieve this solution.Please help me if anyone is having the idea.
To have the burger icon to the right you can try this :