Navbar turns white while transitioning

Hey,

When trying to get to a new page the navbar is turning white while the transition is happening.
I already saw a solution in which they disabled the transition effect. But that is not what I was looking for.

Thanks in advance!

com-video-to-gif

FirstPage.html:

<ion-header>
  <ion-navbar>
    <button ion-button menuToggle>
      <ion-icon name="menu"></ion-icon>
    </button>
    <ion-title [hidden]="exam_mode">Prüfungssimulation - {{navbar_title}}</ion-title>
    <ion-title [hidden]="!exam_mode">{{navbar_title}}</ion-title>
    <ion-buttons end>
      <button ion-button icon-only small class="helpbtn" (click)="help()">
        <ion-icon name="md-help"></ion-icon>
      </button>
    </ion-buttons>
  </ion-navbar>
</ion-header>

FirstPage.ts:

this.navCtrl.push(SecondPage)

SecondPage.html:

<ion-header>
  <ion-navbar>
    <ion-title >Falsche Antworten</ion-title>
  </ion-navbar>
</ion-header>

SecondPage.ts:

this.navCtrl.pop()