Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
3335bcbe
Unverified
Commit
3335bcbe
authored
Dec 22, 2020
by
Jacob Moura
Committed by
GitHub
Dec 22, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix navigator 2.0 in Flutter Web (#72207)
parent
4e3b0115
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
binding.dart
packages/flutter/lib/src/widgets/binding.dart
+1
-1
binding_test.dart
packages/flutter/test/widgets/binding_test.dart
+17
-0
No files found.
packages/flutter/lib/src/widgets/binding.dart
View file @
3335bcbe
...
...
@@ -666,7 +666,7 @@ mixin WidgetsBinding on BindingBase, ServicesBinding, SchedulerBinding, GestureB
await
observer
.
didPushRouteInformation
(
RouteInformation
(
location:
routeArguments
[
'location'
]
as
String
,
state:
routeArguments
[
'state'
]
as
Object
,
state:
routeArguments
[
'state'
]
as
Object
?
,
)
)
)
...
...
packages/flutter/test/widgets/binding_test.dart
View file @
3335bcbe
...
...
@@ -129,6 +129,23 @@ void main() {
WidgetsBinding
.
instance
!.
removeObserver
(
observer
);
});
testWidgets
(
'didPushRouteInformation callback with null state'
,
(
WidgetTester
tester
)
async
{
final
PushRouteInformationObserver
observer
=
PushRouteInformationObserver
();
WidgetsBinding
.
instance
!.
addObserver
(
observer
);
const
Map
<
String
,
dynamic
>
testRouteInformation
=
<
String
,
dynamic
>{
'location'
:
'testRouteName'
,
'state'
:
null
,
};
final
ByteData
message
=
const
JSONMethodCodec
().
encodeMethodCall
(
const
MethodCall
(
'pushRouteInformation'
,
testRouteInformation
));
await
ServicesBinding
.
instance
!.
defaultBinaryMessenger
.
handlePlatformMessage
(
'flutter/navigation'
,
message
,
(
_
)
{
});
expect
(
observer
.
pushedRouteInformation
.
location
,
'testRouteName'
);
expect
(
observer
.
pushedRouteInformation
.
state
,
null
);
WidgetsBinding
.
instance
!.
removeObserver
(
observer
);
});
testWidgets
(
'Application lifecycle affects frame scheduling'
,
(
WidgetTester
tester
)
async
{
final
BinaryMessenger
defaultBinaryMessenger
=
ServicesBinding
.
instance
!.
defaultBinaryMessenger
;
ByteData
message
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment