Side menu style in android
Side menu style in ios
i want to make android style sidemenu action and style in ios device, any idea anyone
Side menu style in android
Side menu style in ios
i want to make android style sidemenu action and style in ios device, any idea anyone
You could achieve that in two ways:
In your html page:
<ion-menu type="overlay" [content]="mycontent">...</ion-menu>
In your app’s config ts file:
imports: [
IonicModule.forRoot(MyApp,{
menuType: 'push', //for all platforms
platforms: {
ios: {
menuType: 'overlay', // for platform specific
}
}
})
],
Menu types could be push
or overlay
Refer to the documentation for further details: