Closing this modal when another opens

Please, stop build a bicycle! :slight_smile:

public toAnotherModal(): void {
  this.nav.present(Modal.create(AnotherModal)).then(() => {
    this.viewCtrl.dismiss();
  });
}
5 Likes