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

Side by Side Diff: sky/sdk/lib/example/rendering/borders.dart

Issue 1209413004: Instead of applying a transform for every RenderObject, pass down an Offset for where to paint. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 5 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
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;
6 import 'dart:sky' as sky; 5 import 'dart:sky' as sky;
7 6
8 import 'package:sky/rendering/block.dart'; 7 import 'package:sky/rendering/block.dart';
9 import 'package:sky/rendering/box.dart'; 8 import 'package:sky/rendering/box.dart';
10 import 'package:sky/rendering/sky_binding.dart'; 9 import 'package:sky/rendering/sky_binding.dart';
11 10
12 void main() { 11 void main() {
13 var root = new RenderBlock(children: [ 12 var root = new RenderBlock(children: [
14 new RenderPadding( 13 new RenderPadding(
15 padding: new EdgeDims.all(10.0), 14 padding: new EdgeDims.all(10.0),
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 child: new RenderDecoratedBox( 67 child: new RenderDecoratedBox(
69 decoration: new BoxDecoration( 68 decoration: new BoxDecoration(
70 backgroundColor: new sky.Color(0xFFFFFF00) 69 backgroundColor: new sky.Color(0xFFFFFF00)
71 ) 70 )
72 ) 71 )
73 ) 72 )
74 ), 73 ),
75 ]); 74 ]);
76 new SkyBinding(root: root); 75 new SkyBinding(root: root);
77 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698