Present a modal without any animation

Hey guys,

Does anyone know how to present a specific modal without any animation at all? The ModalController has enterAnimation and exitAnimation properties, but neither ‘none’ nor an empty string disables the animation.

Any ideas?

want to know this, too. Couldn’t find it in the document.

Maybe something like

let modal:Modal = this.modalController.create(....
modal.present({animate: false});
2 Likes

Thanks a lot! :slight_smile:

1 Like