I use the beta of ionic 4 for the first time. I try to disable the menu on a login page, but i have some trouble.
I\'ve created the app with ionic-cli and the sideme
In my case in ionic 4 app, I did the following in welcome.page.ts file. welcome.page.ts is the page in which I want to hide split pane.
import { MenuController } from '@ionic/angular'; constructor( public menuCtrl: MenuController){} ionViewWillEnter() { this.menuCtrl.enable(false); }