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
c3ddfb92
Unverified
Commit
c3ddfb92
authored
Sep 18, 2019
by
Alexandre Ardhuin
Committed by
GitHub
Sep 18, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add missing trailing commas (in examples/) (#40701)
parent
0b24a5a2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
colors_demo.dart
examples/flutter_gallery/lib/demo/colors_demo.dart
+1
-1
backdrop_demo.dart
...ples/flutter_gallery/lib/demo/material/backdrop_demo.dart
+1
-1
banner_demo.dart
examples/flutter_gallery/lib/demo/material/banner_demo.dart
+2
-2
snack_bar_demo.dart
...les/flutter_gallery/lib/demo/material/snack_bar_demo.dart
+1
-1
canvas.dart
examples/layers/raw/canvas.dart
+1
-1
No files found.
examples/flutter_gallery/lib/demo/colors_demo.dart
View file @
c3ddfb92
...
...
@@ -117,7 +117,7 @@ class PaletteTabView extends StatelessWidget {
);
}),
],
)
)
,
);
}
}
...
...
examples/flutter_gallery/lib/demo/material/backdrop_demo.dart
View file @
c3ddfb92
...
...
@@ -140,7 +140,7 @@ class CategoryView extends StatelessWidget {
],
);
}).
toList
(),
)
)
,
);
}
}
...
...
examples/flutter_gallery/lib/demo/material/banner_demo.dart
View file @
c3ddfb92
...
...
@@ -57,7 +57,7 @@ class _BannerDemoState extends State<BannerDemo> {
setState
(()
{
_displayBanner
=
false
;
});
}
}
,
),
if
(
_showMultipleActions
)
FlatButton
(
...
...
@@ -66,7 +66,7 @@ class _BannerDemoState extends State<BannerDemo> {
setState
(()
{
_displayBanner
=
false
;
});
}
}
,
),
],
);
...
...
examples/flutter_gallery/lib/demo/material/snack_bar_demo.dart
View file @
c3ddfb92
...
...
@@ -88,7 +88,7 @@ class _SnackBarDemoState extends State<SnackBarDemo> {
tooltip:
'Create'
,
onPressed:
()
{
print
(
'Floating Action Button was pressed'
);
}
}
,
),
);
}
...
...
examples/layers/raw/canvas.dart
View file @
c3ddfb92
...
...
@@ -46,7 +46,7 @@ ui.Picture paint(ui.Rect paintBounds) {
// Clips the current transform
canvas
.
clipRect
(
ui
.
Rect
.
fromLTRB
(
0
,
radius
+
50
,
logicalSize
.
width
,
logicalSize
.
height
),
clipOp:
ui
.
ClipOp
.
difference
clipOp:
ui
.
ClipOp
.
difference
,
);
// Shifts the coordinate space of and rotates the current transform
...
...
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