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

Side by Side Diff: sky/sdk/lib/widgets/drawer.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/sdk/lib/widgets/checkbox.dart ('k') | sky/sdk/lib/widgets/drawer_header.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:math' as math; 5 import 'dart:math' as math;
6 import 'dart:sky' as sky; 6 import 'dart:sky' as sky;
7 7
8 import 'package:vector_math/vector_math.dart'; 8 import 'package:vector_math/vector_math.dart';
9 9
10 import '../framework/animation/animated_value.dart'; 10 import '../framework/animation/animated_value.dart';
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 102
103 if (distance > 0) 103 if (distance > 0)
104 position.animateTo(targetPosition, duration, curve: linear); 104 position.animateTo(targetPosition, duration, curve: linear);
105 } 105 }
106 106
107 } 107 }
108 108
109 class Drawer extends AnimatedComponent { 109 class Drawer extends AnimatedComponent {
110 110
111 Drawer({ 111 Drawer({
112 Object key, 112 String key,
113 this.controller, 113 this.controller,
114 this.children, 114 this.children,
115 this.level: 0 115 this.level: 0
116 }) : super(key: key) { 116 }) : super(key: key) {
117 animate(controller.position, (double value) { 117 animate(controller.position, (double value) {
118 _position = value; 118 _position = value;
119 }); 119 });
120 } 120 }
121 121
122 List<UINode> children; 122 List<UINode> children;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 return new EventListenerNode( 157 return new EventListenerNode(
158 new Stack([ mask, content ]), 158 new Stack([ mask, content ]),
159 onPointerDown: controller.handlePointerDown, 159 onPointerDown: controller.handlePointerDown,
160 onPointerMove: controller.handlePointerMove, 160 onPointerMove: controller.handlePointerMove,
161 onPointerUp: controller.handlePointerUp, 161 onPointerUp: controller.handlePointerUp,
162 onPointerCancel: controller.handlePointerCancel 162 onPointerCancel: controller.handlePointerCancel
163 ); 163 );
164 } 164 }
165 165
166 } 166 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/widgets/checkbox.dart ('k') | sky/sdk/lib/widgets/drawer_header.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698