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

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

Issue 1173293005: Make UINode's key a String (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: nit 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/stocks2/lib/stock_menu.dart ('k') | sky/sdk/lib/editing2/editable_text.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/app/scheduler.dart'; 7 import 'package:sky/app/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/widgets/basic.dart'; 10 import 'package:sky/widgets/basic.dart';
11 import 'package:sky/widgets/raised_button.dart'; 11 import 'package:sky/widgets/raised_button.dart';
12 import 'package:sky/widgets/ui_node.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;
23 } 23 }
24 24
25 // Solid colour, Widget version 25 // Solid colour, Widget version
26 class Rectangle extends Component { 26 class Rectangle extends Component {
27 Rectangle(this.color, { Object key }) : super(key: key); 27 Rectangle(this.color, { String key }) : super(key: key);
28 final Color color; 28 final Color color;
29 UINode build() { 29 UINode build() {
30 return new Flexible( 30 return new Flexible(
31 child: new Container( 31 child: new Container(
32 decoration: new BoxDecoration(backgroundColor: color) 32 decoration: new BoxDecoration(backgroundColor: color)
33 ) 33 )
34 ); 34 );
35 } 35 }
36 } 36 }
37 37
(...skipping 52 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/stocks2/lib/stock_menu.dart ('k') | sky/sdk/lib/editing2/editable_text.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698