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
52a53119
Unverified
Commit
52a53119
authored
Feb 27, 2020
by
chunhtai
Committed by
GitHub
Feb 27, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove isinitialroute from RouteSettings (#51435)
parent
be97fdbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
15 deletions
+0
-15
navigator.dart
packages/flutter/lib/src/widgets/navigator.dart
+0
-15
No files found.
packages/flutter/lib/src/widgets/navigator.dart
View file @
52a53119
...
...
@@ -418,7 +418,6 @@ class RouteSettings {
/// Creates data used to construct routes.
const
RouteSettings
({
this
.
name
,
this
.
isInitialRoute
=
false
,
this
.
arguments
,
});
...
...
@@ -439,19 +438,6 @@ class RouteSettings {
/// If null, the route is anonymous.
final
String
name
;
/// Whether this route is the very first route being pushed onto this [Navigator].
///
/// The initial route typically skips any entrance transition to speed startup.
///
/// This property has been deprecated. Uses [Navigator.onGenerateInitialRoutes]
/// to customize initial routes instead. This feature was deprecated after
/// v1.14.1.
@Deprecated
(
'Uses onGenerateInitialRoutes to customize initial routes instead. '
'This feature was deprecated after v1.14.1.'
)
final
bool
isInitialRoute
;
/// The arguments passed to this route.
///
/// May be used when building the route, e.g. in [Navigator.onGenerateRoute].
...
...
@@ -2178,7 +2164,6 @@ class NavigatorState extends State<Navigator> with TickerProviderStateMixin {
}());
final
RouteSettings
settings
=
RouteSettings
(
name:
name
,
isInitialRoute:
_history
.
isEmpty
,
arguments:
arguments
,
);
Route
<
T
>
route
=
widget
.
onGenerateRoute
(
settings
)
as
Route
<
T
>;
...
...
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