mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07:00
18 lines
561 B
Dart
18 lines
561 B
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
/// Guards against duplicate navigation to this route
|
|
class DuplicateGuard extends AutoRouteGuard {
|
|
DuplicateGuard();
|
|
@override
|
|
void onNavigation(NavigationResolver resolver, StackRouter router) async {
|
|
// Duplicate navigation
|
|
if (resolver.route.name == router.current.name) {
|
|
debugPrint('DuplicateGuard: Preventing duplicate route navigation for ${resolver.route.name}');
|
|
resolver.next(false);
|
|
} else {
|
|
resolver.next(true);
|
|
}
|
|
}
|
|
}
|