Show Tabs menu except Login Page?

i set Login page as root page app.component.ts. after Login success navigate to Home page.
in this case tabs menu not showing Home page. but i need to show menu in home page only not in login page. please help me.

import { Component } from '@angular/core';
import { Platform } from 'ionic-angular';
import { StatusBar } from '@ionic-native/status-bar';
import { SplashScreen } from '@ionic-native/splash-screen';

import { TabsPage } from '../pages/tabs/tabs';
import { LoginPage } from '../pages/login/login';
@Component({
  templateUrl: 'app.html'
})
export class MyApp {
  rootPage:any = LoginPage;
  
  constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
    platform.ready().then(() => {
      // Okay, so the platform is ready and our plugins are available.
      // Here you can do any higher level native things you might need.
      statusBar.styleDefault();
      splashScreen.hide();
    });
  }
}

The Code you provided is absolutely out of topic :smiley: Please share your app-routing.ts

im not using routing. im using navController for navigation.
this is the tabs.ts

import { Component } from '@angular/core';

import { TagsPage } from '../tags/tags';
import { GembaWalkPage } from '../gemba-walk/gemba-walk';
import { NotificationsPage } from '../notifications/notifications';
import { HomePage } from '../home/home';

@Component({
  templateUrl: 'tabs.html'
})
export class TabsPage {

  tab1Root = HomePage;
  tab2Root = GembaWalkPage;
  tab3Root = GembaWalkPage;
  tab4Root = NotificationsPage;
  tab5Root = NotificationsPage;

  constructor() {}
  
}

im navigating like this

 login(){
    this.navCtrl.setRoot('HomePage');
  }

Ahh okay sorry i see you are using v3. I_m not sure, but i think you have to navigate to the Tabs Page after login() not to the HomePage.