Flavio Spugna
Flavio Spugna

Reputation: 93

Ionic v2 - How to disable popover animation

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.

Popover official doc

Thanks a lot.

Upvotes: 6

Views: 2193

Answers (1)

Duannx
Duannx

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

Related Questions