From 3cb8a4f6a2e6dc8b397b8309839202fab2eaf97c Mon Sep 17 00:00:00 2001 From: Adam Barth Date: Wed, 10 Jun 2015 15:34:30 -0700 Subject: [PATCH] Rename BlockContainer, StackContainer, and FlexContainer These are now called Block, Stack, and Flex, respectively. Less verbose. R=jackson@google.com, ianh@google.com Review URL: https://codereview.chromium.org/1181533002. --- .../src/flutter/examples/fn2/container.dart | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/engine/src/flutter/examples/fn2/container.dart b/engine/src/flutter/examples/fn2/container.dart index 650775af7a..f1eec6bbea 100644 --- a/engine/src/flutter/examples/fn2/container.dart +++ b/engine/src/flutter/examples/fn2/container.dart @@ -20,23 +20,22 @@ class Rectangle extends RenderObjectWrapper { class ContainerApp extends App { UINode build() { return new EventListenerNode( - new BlockContainer(children: [ + new Block([ new Container( padding: new EdgeDims.all(10.0), margin: new EdgeDims.all(10.0), height: 100.0, decoration: new BoxDecoration(backgroundColor: const sky.Color(0xFF00FF00)), - child: new BlockContainer( - children: [ - new Container( - decoration: new BoxDecoration(backgroundColor: const sky.Color(0xFFFFFF00)), - height: 20.0, - ), - new Image(src: "https://www.dartlang.org/logos/dart-logo.png", - size: new sky.Size(300.0, 300.0), - key: 1 - ), - ])), + child: new Block([ + new Container( + decoration: new BoxDecoration(backgroundColor: const sky.Color(0xFFFFFF00)), + height: 20.0, + ), + new Image(src: "https://www.dartlang.org/logos/dart-logo.png", + size: new sky.Size(300.0, 300.0), + key: 1 + ), + ])), ]), onPointerDown: _handlePointerDown, onGestureTap: _handleGestureTap);