File tree Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Original file line number Diff line number Diff line change
1
+ ## 6.5.9
2
+
3
+ - Removes navigator keys from ` GoRouteData ` and ` ShellRouteData ` .
4
+
1
5
## 6.5.8
2
6
3
7
- Adds name parameter to ` TypedGoRoute `
16
20
17
21
## 6.5.4
18
22
19
- - Remove navigator keys from ` TypedGoRoute ` and ` TypedShellRoute ` .
23
+ - Removes navigator keys from ` TypedGoRoute ` and ` TypedShellRoute ` .
20
24
21
25
## 6.5.3
22
26
Original file line number Diff line number Diff line change @@ -121,11 +121,6 @@ abstract class GoRouteData extends RouteData {
121
121
static final Expando <GoRouteData > _stateObjectExpando = Expando <GoRouteData >(
122
122
'GoRouteState to GoRouteData expando' ,
123
123
);
124
-
125
- /// [navigatorKey] is used to point to a certain navigator
126
- ///
127
- /// It will use the given key to find the right navigator for [GoRoute]
128
- GlobalKey <NavigatorState >? get navigatorKey => null ;
129
124
}
130
125
131
126
/// Base class for supporting
@@ -208,9 +203,6 @@ abstract class ShellRouteData extends RouteData {
208
203
Expando <ShellRouteData >(
209
204
'GoRouteState to ShellRouteData expando' ,
210
205
);
211
-
212
- /// It will be used to instantiate [Navigator] with the given key
213
- GlobalKey <NavigatorState >? get navigatorKey => null ;
214
206
}
215
207
216
208
/// A superclass for each typed route descendant
Original file line number Diff line number Diff line change 1
1
name : go_router
2
2
description : A declarative router for Flutter based on Navigation 2 supporting
3
3
deep linking, data-driven routes and more
4
- version : 6.5.8
4
+ version : 6.5.9
5
5
repository : https://github.com/flutter/packages/tree/main/packages/go_router
6
6
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+go_router%22
7
7
You can’t perform that action at this time.
0 commit comments