ionic2某些頁面不顯示tabs

nav.push 在ion-tabs以外:javascript

ionic2使用NavController進行頁面的跳轉,有些頁面跳轉可能須要隱藏底部ion-tabs。html

import { Component} from '@angular/core';
import { App } from 'ionic-angular';

@Component({
  templateUrl: 'lists.html',
})
export class ListsTab {

  constructor(private app: App) {
  }

  goToSingle(listId:number) {
    this.app.getRootNav().push(SinglePage, {listId: listId});
  }

}

底部的tab欄就不會顯示了java

相關文章
相關標籤/搜索