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

Side by Side Diff: sky/examples/widgets/spinning_mixed.dart

Issue 1177383006: Rename all the things (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix imports Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « sky/examples/widgets/hello_widgets.dart ('k') | sky/home.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/framework/rendering/box.dart'; 7 import 'package:sky/app/scheduler.dart';
8 import 'package:sky/framework/rendering/flex.dart'; 8 import 'package:sky/rendering/box.dart';
9 import 'package:sky/framework/scheduler.dart'; 9 import 'package:sky/rendering/flex.dart';
10 import 'package:sky/framework/widgets/raised_button.dart'; 10 import 'package:sky/widgets/basic.dart';
11 import 'package:sky/framework/widgets/ui_node.dart'; 11 import 'package:sky/widgets/raised_button.dart';
12 import 'package:sky/framework/widgets/basic.dart'; 12 import 'package:sky/widgets/ui_node.dart';
13 import 'package:vector_math/vector_math.dart'; 13 import 'package:vector_math/vector_math.dart';
14 14
15 import '../lib/solid_color_box.dart'; 15 import '../lib/solid_color_box.dart';
16 import '../../tests/resources/display_list.dart'; 16 import '../../tests/resources/display_list.dart';
17 17
18 // Solid colour, RenderObject version 18 // Solid colour, RenderObject version
19 void addFlexChildSolidColor(RenderFlex parent, sky.Color backgroundColor, { int flex: 0 }) { 19 void addFlexChildSolidColor(RenderFlex parent, sky.Color backgroundColor, { int flex: 0 }) {
20 RenderSolidColorBox child = new RenderSolidColorBox(backgroundColor); 20 RenderSolidColorBox child = new RenderSolidColorBox(backgroundColor);
21 parent.add(child); 21 parent.add(child);
22 child.parentData.flex = flex; 22 child.parentData.flex = flex;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 addFlexChildSolidColor(flexRoot, const sky.Color(0xFFFF00FF), flex: 1); 90 addFlexChildSolidColor(flexRoot, const sky.Color(0xFFFF00FF), flex: 1);
91 flexRoot.add(proxy); 91 flexRoot.add(proxy);
92 addFlexChildSolidColor(flexRoot, const sky.Color(0xFF0000FF), flex: 1); 92 addFlexChildSolidColor(flexRoot, const sky.Color(0xFF0000FF), flex: 1);
93 93
94 transformBox = new RenderTransform(child: flexRoot, transform: new Matrix4.ide ntity()); 94 transformBox = new RenderTransform(child: flexRoot, transform: new Matrix4.ide ntity());
95 RenderPadding root = new RenderPadding(padding: new EdgeDims.all(20.0), child: transformBox); 95 RenderPadding root = new RenderPadding(padding: new EdgeDims.all(20.0), child: transformBox);
96 96
97 UINodeAppView.appView.root = root; 97 UINodeAppView.appView.root = root;
98 addPersistentFrameCallback(rotate); 98 addPersistentFrameCallback(rotate);
99 } 99 }
OLDNEW
« no previous file with comments | « sky/examples/widgets/hello_widgets.dart ('k') | sky/home.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698