File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1+ ## 6.0.5
2+
3+ - Fixes [ unnecessary_null_comparison] ( https://dart-lang.github.io/linter/lints/unnecessary_null_checks.html ) lint warnings.
4+
15## 6.0.4
26
37- Fixes redirection info log.
Original file line number Diff line number Diff line change @@ -305,10 +305,6 @@ class RouteBuilder {
305305 {Widget ? childWidget}) {
306306 final RouteBase route = match.route;
307307
308- if (route == null ) {
309- throw _RouteBuilderError ('No route found for match: $match ' );
310- }
311-
312308 if (route is GoRoute ) {
313309 final GoRouterWidgetBuilder ? builder = route.builder;
314310
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ class RouteConfiguration {
8181 ],
8282 );
8383 }
84- } else if (route is ShellRoute && route.navigatorKey != null ) {
84+ } else if (route is ShellRoute ) {
8585 _debugCheckParentNavigatorKeys (
8686 route.routes,
8787 < GlobalKey <NavigatorState >> [...allowedKeys..add (route.navigatorKey)],
Original file line number Diff line number Diff line change 11name : go_router
22description : A declarative router for Flutter based on Navigation 2 supporting
33 deep linking, data-driven routes and more
4- version : 6.0.4
4+ version : 6.0.5
55repository : https://github.com/flutter/packages/tree/main/packages/go_router
66issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+go_router%22
77
You can’t perform that action at this time.
0 commit comments