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
9cfcd3fd
Commit
9cfcd3fd
authored
Jan 25, 2017
by
Hans Muller
Committed by
GitHub
Jan 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corrected the "Routes can return a value" example (#7638)
parent
1426ef99
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
navigator.dart
packages/flutter/lib/src/widgets/navigator.dart
+2
-2
No files found.
packages/flutter/lib/src/widgets/navigator.dart
View file @
9cfcd3fd
...
...
@@ -368,9 +368,9 @@ typedef bool RoutePredicate(Route<dynamic> route);
/// bool value = await Navigator.of(context).push(new MaterialPageRoute<bool>(
/// builder: (BuildContext context) {
/// return new Center(
/// child: new
FlatButton
(
/// child: new
GestureDetector
(
/// child: new Text('OK'),
/// on
Pressed
: () { Navigator.of(context).pop(true); }
/// on
Tap
: () { Navigator.of(context).pop(true); }
/// ),
/// );
/// }
...
...
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