Skip to content

Commit

Permalink
Apply fix analyze
Browse files Browse the repository at this point in the history
  • Loading branch information
obraca committed Jun 22, 2023
1 parent 7074216 commit f722590
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/nuvigator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ class NuvigatorStateTracker extends NavigatorObserver {
void didReplace({Route<dynamic>? newRoute, Route<dynamic>? oldRoute}) {
final index = stack.indexOf(oldRoute);
stack[index] = newRoute;
if (debug)
if (debug) {
debugPrint('didReplace $oldRoute to $newRoute: $stackRouteNames');
}
}
}

Expand Down

0 comments on commit f722590

Please sign in to comment.