how to active side menu in ionic3
import { Component, ViewChild } from '@angular/core' ; import { Nav, Platform, AlertController, MenuController, Icon } from 'ionic-angular' ; import { StatusBar } from '@ionic-native/status-bar' ; import { SplashScreen } from '@ionic-native/splash-screen' ; import { HomePage } from '../pages/home/home' ; import { WelcomePage } from '../pages/welcome/welcome' ; import { Storage } from '@ionic/storage' ; import { NetworkInterface } from '@ionic-native/network-interface' ; import { Network } from '@ionic-native/network' ; import { ChangepasswordPage } from '../pages/changepassword/changepassword' ; @ Component ({ templateUrl: 'app.html' }) export class MyApp { @ ViewChild (Nav) nav : Nav ; rootPage : any ; pages : Array <{title : string ,icon : string , component : any }>; closelogin : boolean ; user : string ; username :...