-
Beta Was this translation helpful? Give feedback.
Answered by
agordn52
Jul 22, 2024
Replies: 1 comment 2 replies
-
Hi @fuz12, This is because we added the swipe-back gesture for IOS in v5.64.0. There are two ways you could fix this.
router.route(..., pageTransitionSettings: PageTransitionSettings(
isIos: false
));
// update routeTo calls
routeTo(..., pageTransitionSettings: PageTransitionSettings(
isIos: false
)); Hope that helps :) |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
fuz12
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @fuz12,
This is because we added the swipe-back gesture for IOS in v5.64.0.
There are two ways you could fix this.
pageTransitionSettings
when routing.Hope that helps :)