| 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'; | 5 import 'dart:sky'; |
| 6 import 'dart:math' as math; | 6 import 'dart:math' as math; |
| 7 | 7 |
| 8 import 'package:sky/rendering/block.dart'; | 8 import 'package:sky/rendering/block.dart'; |
| 9 import 'package:sky/rendering/box.dart'; | 9 import 'package:sky/rendering/box.dart'; |
| 10 import 'package:sky/rendering/flex.dart'; | 10 import 'package:sky/rendering/flex.dart'; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 addRow(FlexJustifyContent.spaceBetween); | 37 addRow(FlexJustifyContent.spaceBetween); |
| 38 addRow(FlexJustifyContent.spaceAround); | 38 addRow(FlexJustifyContent.spaceAround); |
| 39 | 39 |
| 40 RenderDecoratedBox root = new RenderDecoratedBox( | 40 RenderDecoratedBox root = new RenderDecoratedBox( |
| 41 decoration: new BoxDecoration(backgroundColor: const Color(0xFFFFFFFF)), | 41 decoration: new BoxDecoration(backgroundColor: const Color(0xFFFFFFFF)), |
| 42 child: new RenderPadding(child: table, padding: new EdgeDims.symmetric(verti
cal: 50.0)) | 42 child: new RenderPadding(child: table, padding: new EdgeDims.symmetric(verti
cal: 50.0)) |
| 43 ); | 43 ); |
| 44 | 44 |
| 45 new SkyBinding(root: root); | 45 new SkyBinding(root: root); |
| 46 } | 46 } |
| OLD | NEW |