您的位置:首页 > 其它

ionic2某些页面不显示tabs

2016-12-13 00:00 232 查看
nav.push 在ion-tabs之外:

ionic2使用NavController进行页面的跳转,有些页面跳转可能需要隐藏底部ion-tabs。

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栏就不会显示了
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ionic2 ion-tabs navigation