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
d6c0f338
Unverified
Commit
d6c0f338
authored
Feb 28, 2019
by
Michael Goderbauer
Committed by
GitHub
Feb 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drive-by fix for TODO (#28669)
parent
ccdd5057
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
routes.dart
packages/flutter/lib/src/widgets/routes.dart
+1
-5
No files found.
packages/flutter/lib/src/widgets/routes.dart
View file @
d6c0f338
...
@@ -81,10 +81,6 @@ abstract class TransitionRoute<T> extends OverlayRoute<T> {
...
@@ -81,10 +81,6 @@ abstract class TransitionRoute<T> extends OverlayRoute<T> {
RouteSettings
settings
,
RouteSettings
settings
,
})
:
super
(
settings:
settings
);
})
:
super
(
settings:
settings
);
// TODO(ianh): once https://github.com/dart-lang/sdk/issues/31543 is fixed,
// this should be removed.
TransitionRoute
.
_settings
(
RouteSettings
settings
)
:
super
(
settings:
settings
);
/// This future completes only once the transition itself has finished, after
/// This future completes only once the transition itself has finished, after
/// the overlay entries have been removed from the navigator's overlay.
/// the overlay entries have been removed from the navigator's overlay.
///
///
...
@@ -681,7 +677,7 @@ abstract class ModalRoute<T> extends TransitionRoute<T> with LocalHistoryRoute<T
...
@@ -681,7 +677,7 @@ abstract class ModalRoute<T> extends TransitionRoute<T> with LocalHistoryRoute<T
/// Creates a route that blocks interaction with previous routes.
/// Creates a route that blocks interaction with previous routes.
ModalRoute
({
ModalRoute
({
RouteSettings
settings
,
RouteSettings
settings
,
})
:
super
.
_settings
(
settings
);
})
:
super
(
settings:
settings
);
// The API for general users of this class
// The API for general users of this class
...
...
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