Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(975)

Unified Diff: sky/examples/fn2/container.dart

Issue 1158983005: Implement Container in fn2 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: nit Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sky/sdk/lib/framework/components2/scaffold.dart » ('j') | sky/sdk/lib/framework/fn2.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | sky/sdk/lib/framework/components2/scaffold.dart » ('j') | sky/sdk/lib/framework/fn2.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698