Chromium Code Reviews| Index: sky/examples/fn2/container.dart |
| diff --git a/sky/examples/fn2/container.dart b/sky/examples/fn2/container.dart |
| index 0c65e4e9748fdf405c90dc08f0b3767845e47ff4..a3509c455f387a4433fd2a3661e844a0eea241d7 100644 |
| --- a/sky/examples/fn2/container.dart |
| +++ b/sky/examples/fn2/container.dart |
| @@ -4,13 +4,25 @@ |
| import 'dart:sky' as sky; |
| import 'package:sky/framework/fn2.dart'; |
| +import 'package:sky/framework/rendering/box.dart'; |
| class ContainerApp extends App { |
| UINode build() { |
| return new EventListenerNode( |
| new BlockContainer(children: [ |
| new Rectangle(0xFF00FFFF, key: 1), |
| - new Rectangle(0xFF00FF00, key: 2), |
| + new Container( |
| + padding: new EdgeDims.all(10.0), |
| + margin: new EdgeDims.all(10.0), |
| + desiredSize: new sky.Size(double.INFINITY, 100.0), |
|
Hixie
2015/06/02 21:52:21
why not desiredWidth and desiredHeight separately?
|
| + decoration: new BoxDecoration(backgroundColor: 0xFF00FF00), |
| + child: new BlockContainer( |
|
Hixie
2015/06/02 21:52:21
Why the BlockContainer, since it only has one chil
|
| + children: [ |
| + new Container( |
| + decoration: new BoxDecoration(backgroundColor: 0xFFFFFF00), |
| + desiredSize: new sky.Size(double.INFINITY, 20.0) |
| + ) |
| + ])), |
| new Rectangle(0xFF0000FF, key: 3) |
| ]), |
| onPointerDown: _handlePointerDown); |