Skip to content

Commit

Permalink
fix/wrong-navigator-used: Should use current navigator else when usin…
Browse files Browse the repository at this point in the history
…g custom it will pop the wrong page
  • Loading branch information
EArminjon committed Sep 2, 2024
1 parent 1a1ec27 commit bb2e2b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class _AliceCallsListPageState extends State<AliceCallsListPage>
/// Called when back button has been pressed. It navigates back to original
/// application.
void _onBackPressed() {
Navigator.of(context, rootNavigator: true).pop();
Navigator.of(context).pop();
}

/// Called when clear logs has been pressed. It displays dialog and awaits for
Expand Down

0 comments on commit bb2e2b7

Please sign in to comment.