fix(android): system back button in player page exits the app

This commit is contained in:
Kingkor Roy Tirtho 2024-02-18 23:05:43 +06:00
parent c3289a0ba4
commit 3294f657fe

View File

@ -94,10 +94,10 @@ class PlayerView extends HookConsumerWidget {
final topPadding = MediaQueryData.fromView(View.of(context)).padding.top;
return PopScope(
canPop: false,
onPopInvoked: (didPop) async {
panelController.close();
return WillPopScope(
onWillPop: () async {
await panelController.close();
return false;
},
child: IconTheme(
data: theme.iconTheme.copyWith(color: bodyTextColor),