Android 12 Real device
get: ^5.0.0-release-candidate-9.3.2
Flutter 3.29.0
BackButtonListener does not trigger when i click back button on the app bar on Android but it triggered when i use gesture back
I used BackButtonListener with PopScope and now its working but it is not looking a good solution
BackButtonListener(
onBackButtonPressed: () async {
//do something
return true;
},
child: PopScope(
canPop: false,
onPopInvokedWithResult: (_, __) async {
//do something
},
child: Scaffold(
appBar: AppBar(),
),
),
)