intermediate

This commit is contained in:
Fabian Freund
2025-01-23 14:03:55 +01:00
parent bd45ed64ee
commit 78c17a70c5
122 changed files with 8730 additions and 1662 deletions
+6 -4
View File
@@ -6,7 +6,9 @@ import 'package:riverpod_annotation/riverpod_annotation.dart';
part 'providers.g.dart';
@Riverpod(keepAlive: true)
GoRouter router(Ref ref) => GoRouter(
debugLogDiagnostics: true,
routes: $appRoutes,
);
GoRouter router(Ref ref) {
return GoRouter(
debugLogDiagnostics: true,
routes: $appRoutes,
);
}