| 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 | 6 |
| 7 import 'package:sky/app/scheduler.dart'; | 7 import 'package:sky/base/scheduler.dart'; |
| 8 import 'package:sky/rendering/box.dart'; | 8 import 'package:sky/rendering/box.dart'; |
| 9 import 'package:sky/rendering/flex.dart'; | 9 import 'package:sky/rendering/flex.dart'; |
| 10 import 'package:sky/rendering/sky_binding.dart'; |
| 10 import 'package:sky/widgets/basic.dart'; | 11 import 'package:sky/widgets/basic.dart'; |
| 11 import 'package:sky/widgets/raised_button.dart'; | 12 import 'package:sky/widgets/raised_button.dart'; |
| 12 import 'package:sky/widgets/widget.dart'; | 13 import 'package:sky/widgets/widget.dart'; |
| 13 import 'package:vector_math/vector_math.dart'; | 14 import 'package:vector_math/vector_math.dart'; |
| 14 | 15 |
| 15 import '../lib/solid_color_box.dart'; | 16 import '../lib/solid_color_box.dart'; |
| 16 import '../../tests/resources/display_list.dart'; | 17 import '../../tests/resources/display_list.dart'; |
| 17 | 18 |
| 18 // Solid colour, RenderObject version | 19 // Solid colour, RenderObject version |
| 19 void addFlexChildSolidColor(RenderFlex parent, sky.Color backgroundColor, { int
flex: 0 }) { | 20 void addFlexChildSolidColor(RenderFlex parent, sky.Color backgroundColor, { int
flex: 0 }) { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 RenderProxyBox proxy = new RenderProxyBox(); | 88 RenderProxyBox proxy = new RenderProxyBox(); |
| 88 new RenderBoxToWidgetAdapter(proxy, builder); // adds itself to proxy | 89 new RenderBoxToWidgetAdapter(proxy, builder); // adds itself to proxy |
| 89 | 90 |
| 90 addFlexChildSolidColor(flexRoot, const sky.Color(0xFFFF00FF), flex: 1); | 91 addFlexChildSolidColor(flexRoot, const sky.Color(0xFFFF00FF), flex: 1); |
| 91 flexRoot.add(proxy); | 92 flexRoot.add(proxy); |
| 92 addFlexChildSolidColor(flexRoot, const sky.Color(0xFF0000FF), flex: 1); | 93 addFlexChildSolidColor(flexRoot, const sky.Color(0xFF0000FF), flex: 1); |
| 93 | 94 |
| 94 transformBox = new RenderTransform(child: flexRoot, transform: new Matrix4.ide
ntity()); | 95 transformBox = new RenderTransform(child: flexRoot, transform: new Matrix4.ide
ntity()); |
| 95 RenderPadding root = new RenderPadding(padding: new EdgeDims.all(20.0), child:
transformBox); | 96 RenderPadding root = new RenderPadding(padding: new EdgeDims.all(20.0), child:
transformBox); |
| 96 | 97 |
| 97 WidgetSkyBinding.skyBinding.root = root; | 98 SkyBinding.instance.root = root; |
| 98 addPersistentFrameCallback(rotate); | 99 addPersistentFrameCallback(rotate); |
| 99 } | 100 } |
| OLD | NEW |