View doesnt Update all the time in Ionic

Hello guys!

I have fixex this Issue (thanks to Ionic tabs doesn't update view while changing from tab to tab)

The Problem is: IF YOU navigate with your NavCtrl INSIDE a callback-function, it will not be inside the Ng-Zone.

you can fix this Problem by navigating inside the ng.zone.run() method :

this._zone.run(() => {
this._navCtrl.push(TabsPage);
});

4 Likes