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
bbf98d9c
Commit
bbf98d9c
authored
Nov 10, 2016
by
Ian Hickson
Committed by
GitHub
Nov 10, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SizedBox.expand (#6791)
parent
fcd47f84
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
166 additions
and
4 deletions
+166
-4
basic.dart
packages/flutter/lib/src/widgets/basic.dart
+22
-4
sized_box_test.dart
packages/flutter/test/widgets/sized_box_test.dart
+144
-0
No files found.
packages/flutter/lib/src/widgets/basic.dart
View file @
bbf98d9c
...
...
@@ -808,11 +808,20 @@ class CustomMultiChildLayout extends MultiChildRenderObjectWidget {
///
/// If not given a child, this widget will size itself to the given width and
/// height, treating nulls as zero.
///
/// The [new SizedBox.expand] constructor can be used to make a [SizedBox] that
/// sizes itself to fit the parent. It is equivalent to setting [width] and
/// [height] to [double.INFINITY].
class
SizedBox
extends
SingleChildRenderObjectWidget
{
/// Creates a box of a specific size.
const
SizedBox
({
Key
key
,
this
.
width
,
this
.
height
,
Widget
child
})
:
super
(
key:
key
,
child:
child
);
const
SizedBox
.
expand
({
Key
key
,
Widget
child
})
:
width
=
double
.
INFINITY
,
height
=
double
.
INFINITY
,
super
(
key:
key
,
child:
child
);
/// If non-null, requires the child to have exactly this width.
final
double
width
;
...
...
@@ -833,13 +842,22 @@ class SizedBox extends SingleChildRenderObjectWidget {
renderObject
.
additionalConstraints
=
_additionalConstraints
;
}
@override
String
toStringShort
()
{
String
type
=
(
width
==
double
.
INFINITY
&&
height
==
double
.
INFINITY
)
?
'
$runtimeType
.expand'
:
'
$runtimeType
'
;
return
key
==
null
?
'
$type
'
:
'
$type
-
$key
'
;
}
@override
void
debugFillDescription
(
List
<
String
>
description
)
{
super
.
debugFillDescription
(
description
);
if
(
width
!=
null
)
description
.
add
(
'width:
$width
'
);
if
(
height
!=
null
)
description
.
add
(
'height:
$height
'
);
if
(
width
!=
double
.
INFINITY
||
height
!=
double
.
INFINITY
)
{
if
(
width
!=
null
)
description
.
add
(
'width:
$width
'
);
if
(
height
!=
null
)
description
.
add
(
'height:
$height
'
);
}
}
}
...
...
packages/flutter/test/widgets/sized_box_test.dart
0 → 100644
View file @
bbf98d9c
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/widgets.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
void
main
(
)
{
testWidgets
(
'SizedBox - no child'
,
(
WidgetTester
tester
)
async
{
GlobalKey
patient
=
new
GlobalKey
();
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
(
key:
patient
,
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
0.0
,
0.0
)));
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
(
key:
patient
,
height:
0.0
,
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
0.0
,
0.0
)));
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
(
key:
patient
,
width:
0.0
,
height:
0.0
,
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
0.0
,
0.0
)));
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
(
key:
patient
,
width:
100.0
,
height:
100.0
,
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
100.0
,
100.0
)));
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
(
key:
patient
,
width:
1000.0
,
height:
1000.0
,
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
800.0
,
600.0
)));
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
.
expand
(
key:
patient
,
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
800.0
,
600.0
)));
});
testWidgets
(
'SizedBox - container child'
,
(
WidgetTester
tester
)
async
{
GlobalKey
patient
=
new
GlobalKey
();
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
(
key:
patient
,
child:
new
Container
(),
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
800.0
,
600.0
)));
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
(
key:
patient
,
height:
0.0
,
child:
new
Container
(),
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
800.0
,
0.0
)));
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
(
key:
patient
,
width:
0.0
,
height:
0.0
,
child:
new
Container
(),
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
0.0
,
0.0
)));
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
(
key:
patient
,
width:
100.0
,
height:
100.0
,
child:
new
Container
(),
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
100.0
,
100.0
)));
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
(
key:
patient
,
width:
1000.0
,
height:
1000.0
,
child:
new
Container
(),
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
800.0
,
600.0
)));
await
tester
.
pumpWidget
(
new
Center
(
child:
new
SizedBox
.
expand
(
key:
patient
,
child:
new
Container
(),
)
)
);
expect
(
patient
.
currentContext
.
size
,
equals
(
const
Size
(
800.0
,
600.0
)));
});
}
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