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

Side by Side Diff: sky/examples/fn2/container.dart

Issue 1162023004: Update BoxDecoration and RenderParagraph to use sky.Color instead of int. (Closed) Base URL: git@github.com:/domokit/mojo.git@master
Patch Set: test expectations 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/engine/core/painting/Color.dart ('k') | sky/examples/raw/render_paragraph.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 import 'package:sky/framework/fn2.dart'; 6 import 'package:sky/framework/fn2.dart';
7 import 'package:sky/framework/rendering/box.dart'; 7 import 'package:sky/framework/rendering/box.dart';
8 8
9 class ContainerApp extends App { 9 class ContainerApp extends App {
10 UINode build() { 10 UINode build() {
11 return new EventListenerNode( 11 return new EventListenerNode(
12 new BlockContainer(children: [ 12 new BlockContainer(children: [
13 new Container( 13 new Container(
14 padding: new EdgeDims.all(10.0), 14 padding: new EdgeDims.all(10.0),
15 margin: new EdgeDims.all(10.0), 15 margin: new EdgeDims.all(10.0),
16 desiredSize: new sky.Size(double.INFINITY, 100.0), 16 desiredSize: new sky.Size(double.INFINITY, 100.0),
17 decoration: new BoxDecoration(backgroundColor: 0xFF00FF00), 17 decoration: new BoxDecoration(backgroundColor: const sky.Color(0xFF00F F00)),
18 child: new BlockContainer( 18 child: new BlockContainer(
19 children: [ 19 children: [
20 new Container( 20 new Container(
21 decoration: new BoxDecoration(backgroundColor: 0xFFFFFF00) , 21 decoration: new BoxDecoration(backgroundColor: const sky.C olor(0xFFFFFF00)),
22 desiredSize: new sky.Size(double.INFINITY, 20.0) 22 desiredSize: new sky.Size(double.INFINITY, 20.0)
23 ) 23 )
24 ])), 24 ])),
25 ]), 25 ]),
26 onPointerDown: _handlePointerDown); 26 onPointerDown: _handlePointerDown);
27 } 27 }
28 28
29 void _handlePointerDown(sky.PointerEvent event) { 29 void _handlePointerDown(sky.PointerEvent event) {
30 print("_handlePointerDown"); 30 print("_handlePointerDown");
31 } 31 }
32 } 32 }
33 33
34 void main() { 34 void main() {
35 new ContainerApp(); 35 new ContainerApp();
36 } 36 }
OLDNEW
« no previous file with comments | « sky/engine/core/painting/Color.dart ('k') | sky/examples/raw/render_paragraph.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698