kalismeras61 / flutter_page_transition

This is Flutter Page Transition Package
BSD 2-Clause "Simplified" License
471 stars 56 forks source link

Cannot pop the current screen with the back gesture on android #87

Closed coderrrrr2 closed 2 months ago

coderrrrr2 commented 2 months ago

Navigated to a new screen with navigator.push when I try to move back to the previous screen with the back gesture on android it closes the entire app worked well previously

coderrrrr2 commented 2 months ago

my code Navigator.push( context, PageTransition( isIos: Platform.isIOS ? true : false, child: screen, type: PageTransitionType.fade, duration: const Duration(milliseconds: 400), ));

coderrrrr2 commented 2 months ago

solved it by setting the
android:enableOnBackInvokedCallback = "false"> to false wasn't a problem with the package