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
1949f124
Commit
1949f124
authored
Mar 24, 2016
by
Ian Hickson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2870 from Hixie/typos
Fix minor typos (EdgeInsets, ImageResource)
parents
e1b112ff
24f93f73
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
edge_insets.dart
packages/flutter/lib/src/painting/edge_insets.dart
+6
-4
image_resource.dart
packages/flutter/lib/src/services/image_resource.dart
+1
-1
No files found.
packages/flutter/lib/src/painting/edge_insets.dart
View file @
1949f124
...
...
@@ -19,10 +19,12 @@ class EdgeInsets {
:
top
=
value
,
right
=
value
,
bottom
=
value
,
left
=
value
;
/// Constructs insets with only the given values non-zero.
const
EdgeInsets
.
only
({
this
.
top
:
0.0
,
this
.
right
:
0.0
,
this
.
bottom
:
0.0
,
this
.
left
:
0.0
});
const
EdgeInsets
.
only
({
this
.
top
:
0.0
,
this
.
right
:
0.0
,
this
.
bottom
:
0.0
,
this
.
left
:
0.0
});
/// Constructs insets with symmetrical vertical and horizontal offsets.
const
EdgeInsets
.
symmetric
({
double
vertical:
0.0
,
...
...
packages/flutter/lib/src/services/image_resource.dart
View file @
1949f124
...
...
@@ -73,7 +73,7 @@ class ImageResource {
/// The first concrete [ImageInfo] object represented by this handle.
///
/// Instead of receiving
ly
only the first image, most clients will want to
/// Instead of receiving only the first image, most clients will want to
/// [addListener] to be notified whenever a a concrete image is available.
Future
<
ImageInfo
>
get
first
=>
_futureImage
;
...
...
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