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:math' as math; | |
6 import 'dart:sky' as sky; | 5 import 'dart:sky' as sky; |
7 | 6 |
8 import 'package:sky/rendering/block.dart'; | 7 import 'package:sky/rendering/block.dart'; |
9 import 'package:sky/rendering/box.dart'; | 8 import 'package:sky/rendering/box.dart'; |
10 import 'package:sky/rendering/sky_binding.dart'; | 9 import 'package:sky/rendering/sky_binding.dart'; |
11 | 10 |
12 void main() { | 11 void main() { |
13 var root = new RenderBlock(children: [ | 12 var root = new RenderBlock(children: [ |
14 new RenderPadding( | 13 new RenderPadding( |
15 padding: new EdgeDims.all(10.0), | 14 padding: new EdgeDims.all(10.0), |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 child: new RenderDecoratedBox( | 67 child: new RenderDecoratedBox( |
69 decoration: new BoxDecoration( | 68 decoration: new BoxDecoration( |
70 backgroundColor: new sky.Color(0xFFFFFF00) | 69 backgroundColor: new sky.Color(0xFFFFFF00) |
71 ) | 70 ) |
72 ) | 71 ) |
73 ) | 72 ) |
74 ), | 73 ), |
75 ]); | 74 ]); |
76 new SkyBinding(root: root); | 75 new SkyBinding(root: root); |
77 } | 76 } |
OLD | NEW |