Reputation: 93
I would like to disable the animation that open a Popover starting from Top Left corner. Instead I want it opens the same way it close when I do "dismiss", a sort of a FadeOut of the entire element.
I am not able to do this. It is not clear if I can pass any options to the "create" method.
Thanks a lot.
Upvotes: 6
Views: 2193
Reputation: 8726
You can disable animation by NavOptions
let popover = this.popoverCtrl.create("YourPage");
popover.present({animate: false});
You can also change the type of animation. See the doc for more information.
Upvotes: 4