Navbar Backbutton

Hi all,
I have some problems with the back button:

  • In chrome (ionic serve) it doesn’t work.
  • In Android (emulation) the hardware back button works fine but the navbar back button doesn’t work
  • In Ios (emulation) the back button works fine

My page workflow is this:

  1. app.component.ts: rootPage = LoginPage;
  2. login.ts: this.navCtrl.setRoot(HomePage, { animate: true, direction: “forward” });
  3. home.ts: this.navCtrl.push(AboutPage, { animate: true, direction: “forward” });
  4. in about page the back button appear in the nav bar but, as I wrote it works only in ios (emulation)