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

Side by Side Diff: sky/sdk/lib/framework/widgets/wrappers.dart

Issue 1178293004: Port sky_home to the new SkyView world (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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/framework/widgets/tool_bar.dart ('k') | sky/shell/ios/Info.plist » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 import 'package:vector_math/vector_math.dart'; 2 import 'package:vector_math/vector_math.dart';
3 3
4 import '../rendering/block.dart'; 4 import '../rendering/block.dart';
5 import '../rendering/box.dart'; 5 import '../rendering/box.dart';
6 import '../rendering/flex.dart'; 6 import '../rendering/flex.dart';
7 import '../rendering/object.dart'; 7 import '../rendering/object.dart';
8 import '../rendering/paragraph.dart'; 8 import '../rendering/paragraph.dart';
9 import '../rendering/stack.dart'; 9 import '../rendering/stack.dart';
10 import 'ui_node.dart'; 10 import 'ui_node.dart';
11 11
12 export '../rendering/box.dart' show BoxConstraints, BoxDecoration, Border, Borde rSide, EdgeDims; 12 export '../rendering/box.dart' show BoxConstraints, BoxDecoration, Border, Borde rSide, EdgeDims;
13 export '../rendering/flex.dart' show FlexDirection; 13 export '../rendering/flex.dart' show FlexDirection, FlexJustifyContent, FlexAlig nItems;
14 export '../rendering/object.dart' show Point, Size, Rect, Color, Paint, Path; 14 export '../rendering/object.dart' show Point, Size, Rect, Color, Paint, Path;
15 export 'ui_node.dart' show UINode, Component, App, EventListenerNode, ParentData Node; 15 export 'ui_node.dart' show UINode, Component, App, EventListenerNode, ParentData Node;
16 16
17 17
18 // PAINTING NODES 18 // PAINTING NODES
19 19
20 class Opacity extends OneChildRenderObjectWrapper { 20 class Opacity extends OneChildRenderObjectWrapper {
21 Opacity({ this.opacity, UINode child, Object key }) 21 Opacity({ this.opacity, UINode child, Object key })
22 : super(child: child, key: key); 22 : super(child: child, key: key);
23 23
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 root.src = src; 381 root.src = src;
382 root.requestedSize = size; 382 root.requestedSize = size;
383 } 383 }
384 384
385 void insert(RenderObjectWrapper child, dynamic slot) { 385 void insert(RenderObjectWrapper child, dynamic slot) {
386 assert(false); 386 assert(false);
387 // Image does not support having children currently 387 // Image does not support having children currently
388 } 388 }
389 389
390 } 390 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/widgets/tool_bar.dart ('k') | sky/shell/ios/Info.plist » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698