Hi!
I’ve been building an App that i also like to become a PWA. After i deployed it to Firebase Hosting, when I choose to add it to the HomeScreen, when im navigating back from a Detail screen by using the Swipe Back gesture native to iOS it triggers not only the native one but also the react router one. Do anyone know how to disable one of them or fixing this?
Video of the occurrence:
1 Like
Bumping this since I haven’t got a response.
Can I provide any additional detail?
I am facing this problem too. The quick workaround seems to be disabling all animations in the router outlet
<IonRouterOutlet animated={false}>
It is also possible to define your own animations by setting the animation
property in the IonRouterOutlet
.
I am facing this problem too.
Yes we can disable the animation.
But I haven’t find a good alternative solution for now.