Header off when opening Navigation inside modal

Hi,

I found an issue when “pushing” a new page inside a modal.

The title of the header in the subpage is under the iOS header (where the clock is, etc), like it’s no padding.

Header code:

<ion-header>
  <ion-navbar>
<ion-title>Checkout</ion-title>
  </ion-navbar>
</ion-header>

I’m using iOS 10.1 and ionic 2 RC1

On your app.module.ts

add this

imports: [
IonicModule.forRoot(MyApp, {
tabsHideOnSubPages: true
})
],

Hi, that doesn’t fix it. Also it breaks the rest of subpages in the app outside the modal (i’m using the tabs)

Hi @sebastiannm
I have same problem, did you solve it?

Regards