OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 import 'dart:sky' as sky; | 5 import 'dart:sky' as sky; |
6 import 'package:sky/framework/fn2.dart'; | 6 import 'package:sky/framework/fn2.dart'; |
7 import 'package:sky/framework/rendering/box.dart'; | 7 import 'package:sky/framework/rendering/box.dart'; |
| 8 import '../lib/solid_color_box.dart'; |
| 9 |
| 10 class Rectangle extends RenderNodeWrapper { |
| 11 RenderSolidColorBox root; |
| 12 RenderSolidColorBox createNode() => |
| 13 new RenderSolidColorBox(color, desiredSize: new sky.Size(40.0, 130.0)); |
| 14 |
| 15 final int color; |
| 16 |
| 17 Rectangle(this.color, { Object key }) : super(key: key); |
| 18 } |
8 | 19 |
9 class ContainerApp extends App { | 20 class ContainerApp extends App { |
10 UINode build() { | 21 UINode build() { |
11 return new EventListenerNode( | 22 return new EventListenerNode( |
12 new BlockContainer(children: [ | 23 new BlockContainer(children: [ |
13 new Container( | 24 new Container( |
14 padding: new EdgeDims.all(10.0), | 25 padding: new EdgeDims.all(10.0), |
15 margin: new EdgeDims.all(10.0), | 26 margin: new EdgeDims.all(10.0), |
16 desiredSize: new sky.Size(double.INFINITY, 100.0), | 27 desiredSize: new sky.Size(double.INFINITY, 100.0), |
17 decoration: new BoxDecoration(backgroundColor: const sky.Color(0xFF00F
F00)), | 28 decoration: new BoxDecoration(backgroundColor: const sky.Color(0xFF00F
F00)), |
18 child: new BlockContainer( | 29 child: new BlockContainer( |
19 children: [ | 30 children: [ |
20 new Container( | 31 new Container( |
21 decoration: new BoxDecoration(backgroundColor: const sky.C
olor(0xFFFFFF00)), | 32 decoration: new BoxDecoration(backgroundColor: const sky.C
olor(0xFFFFFF00)), |
22 desiredSize: new sky.Size(double.INFINITY, 20.0) | 33 desiredSize: new sky.Size(double.INFINITY, 20.0) |
23 ) | 34 ), |
| 35 new Image(src: "https://www.dartlang.org/logos/dart-logo.png", |
| 36 size: new sky.Size(300.0, 300.0), |
| 37 key: 1 |
| 38 ), |
24 ])), | 39 ])), |
25 ]), | 40 ]), |
26 onPointerDown: _handlePointerDown); | 41 onPointerDown: _handlePointerDown); |
27 } | 42 } |
28 | 43 |
29 void _handlePointerDown(sky.PointerEvent event) { | 44 void _handlePointerDown(sky.PointerEvent event) { |
30 print("_handlePointerDown"); | 45 print("_handlePointerDown"); |
31 } | 46 } |
32 } | 47 } |
33 | 48 |
34 void main() { | 49 void main() { |
35 new ContainerApp(); | 50 new ContainerApp(); |
36 } | 51 } |
OLD | NEW |