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
af250fc9
Commit
af250fc9
authored
Jan 15, 2016
by
Seth Ladd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix links to new website
parent
37821891
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
README.md
examples/README.md
+1
-1
README.md
examples/material_gallery/README.md
+1
-1
README.md
packages/flutter/README.md
+1
-1
box.dart
packages/flutter/lib/src/rendering/box.dart
+1
-1
flex.dart
packages/flutter/lib/src/rendering/flex.dart
+1
-1
No files found.
examples/README.md
View file @
af250fc9
...
@@ -6,7 +6,7 @@ individual Dart application package.
...
@@ -6,7 +6,7 @@ individual Dart application package.
To run a sample with the
`flutter`
tool, run
`pub get`
inside its directory,
To run a sample with the
`flutter`
tool, run
`pub get`
inside its directory,
then run
`flutter start`
. (See the
then run
`flutter start`
. (See the
[
getting started guide
](
https://flutter.
github.
io/getting-started/
)
to install
[
getting started guide
](
https://flutter.io/getting-started/
)
to install
the
`flutter`
tool.)
the
`flutter`
tool.)
Available examples include:
Available examples include:
...
...
examples/material_gallery/README.md
View file @
af250fc9
...
@@ -8,5 +8,5 @@ Icon was generated using Android Asset Studio:
...
@@ -8,5 +8,5 @@ Icon was generated using Android Asset Studio:
https://romannurik.github.io/AndroidAssetStudio/icons-launcher.html#foreground.type=image&foreground.space.trim=0&foreground.space.pad=0.1&foreColor=607d8b%2C0&crop=0&backgroundShape=square&backColor=ffffff%2C100&effects=none
https://romannurik.github.io/AndroidAssetStudio/icons-launcher.html#foreground.type=image&foreground.space.trim=0&foreground.space.pad=0.1&foreColor=607d8b%2C0&crop=0&backgroundShape=square&backColor=ffffff%2C100&effects=none
From the Flutter Logo:
From the Flutter Logo:
https://github.com/flutter/
flutter.github.io
/blob/master/_includes/logo.html
https://github.com/flutter/
website
/blob/master/_includes/logo.html
which appears to be CC-BY 4.0.
which appears to be CC-BY 4.0.
packages/flutter/README.md
View file @
af250fc9
...
@@ -5,5 +5,5 @@ Flutter is a new way to build high-performance, cross-platform mobile apps.
...
@@ -5,5 +5,5 @@ Flutter is a new way to build high-performance, cross-platform mobile apps.
Flutter is optimized for today's, and tomorrow's, mobile devices. We are
Flutter is optimized for today's, and tomorrow's, mobile devices. We are
focused on low-latency input and high frame rates on Android and iOS.
focused on low-latency input and high frame rates on Android and iOS.
See the
[
getting started guide
](
https://flutter.
github.
io/getting-started/
)
for
See the
[
getting started guide
](
https://flutter.io/getting-started/
)
for
information about using Flutter.
information about using Flutter.
packages/flutter/lib/src/rendering/box.dart
View file @
af250fc9
...
@@ -534,7 +534,7 @@ abstract class RenderBox extends RenderObject {
...
@@ -534,7 +534,7 @@ abstract class RenderBox extends RenderObject {
assert
(
constraints
!=
null
);
assert
(
constraints
!=
null
);
assert
(
_size
!=
null
);
assert
(
_size
!=
null
);
assert
(()
{
assert
(()
{
'See https://flutter.
github.
io/layout/#unbounded-constraints'
;
'See https://flutter.io/layout/#unbounded-constraints'
;
return
!
_size
.
isInfinite
;
return
!
_size
.
isInfinite
;
});
});
bool
result
=
constraints
.
isSatisfiedBy
(
_size
);
bool
result
=
constraints
.
isSatisfiedBy
(
_size
);
...
...
packages/flutter/lib/src/rendering/flex.dart
View file @
af250fc9
...
@@ -352,7 +352,7 @@ class RenderFlex extends RenderBox with ContainerRenderObjectMixin<RenderBox, Fl
...
@@ -352,7 +352,7 @@ class RenderFlex extends RenderBox with ContainerRenderObjectMixin<RenderBox, Fl
// Flexible children can only be used when the RenderFlex box's container has a finite size.
// Flexible children can only be used when the RenderFlex box's container has a finite size.
// When the container is infinite, for example if you are in a scrollable viewport, then
// When the container is infinite, for example if you are in a scrollable viewport, then
// it wouldn't make any sense to have a flexible child.
// it wouldn't make any sense to have a flexible child.
assert
(
canFlex
&&
'See https://flutter.
github.
io/layout/#flex'
is
String
);
assert
(
canFlex
&&
'See https://flutter.io/layout/#flex'
is
String
);
totalFlex
+=
childParentData
.
flex
;
totalFlex
+=
childParentData
.
flex
;
}
else
{
}
else
{
BoxConstraints
innerConstraints
;
BoxConstraints
innerConstraints
;
...
...
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