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
4f258357
Commit
4f258357
authored
Apr 10, 2017
by
xster
Committed by
GitHub
Apr 10, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix lints (#9307)
parent
7ce1cfd4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
full_screen_dialog_demo.dart
...er_gallery/lib/demo/material/full_screen_dialog_demo.dart
+2
-2
scaffold_test.dart
packages/flutter/test/material/scaffold_test.dart
+2
-2
No files found.
examples/flutter_gallery/lib/demo/material/full_screen_dialog_demo.dart
View file @
4f258357
...
...
@@ -203,7 +203,7 @@ class FullScreenDialogDemoState extends State<FullScreenDialogDemo> {
});
}
),
const
Text
(
'All-day'
)
const
Text
(
'All-day'
)
,
]
),
new
Container
(
...
...
@@ -221,7 +221,7 @@ class FullScreenDialogDemoState extends State<FullScreenDialogDemo> {
});
}
),
new
Text
(
'All-day'
)
const
Text
(
'All-day'
),
]
)
)
...
...
packages/flutter/test/material/scaffold_test.dart
View file @
4f258357
...
...
@@ -334,13 +334,13 @@ void main() {
await
tester
.
pumpWidget
(
new
MaterialApp
(
theme:
new
ThemeData
(
platform:
platform
),
home:
new
Scaffold
(
appBar:
new
AppBar
(),
body:
new
Text
(
'Page 1'
)),
home:
new
Scaffold
(
appBar:
new
AppBar
(),
body:
const
Text
(
'Page 1'
)),
)
);
tester
.
state
<
NavigatorState
>(
find
.
byType
(
Navigator
)).
push
(
new
MaterialPageRoute
<
Null
>(
builder:
(
BuildContext
context
)
{
return
new
Scaffold
(
appBar:
new
AppBar
(),
body:
new
Text
(
'Page 2'
));
return
new
Scaffold
(
appBar:
new
AppBar
(),
body:
const
Text
(
'Page 2'
));
},
fullscreenDialog:
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