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

Side by Side Diff: sky/examples/stocks2/lib/stock_row.dart

Issue 1177383006: Rename all the things (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix imports 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/examples/widgets/container.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/framework/rendering/box.dart'; 7 import 'package:sky/rendering/box.dart';
8 import 'package:sky/framework/theme2/typography.dart' as typography; 8 import 'package:sky/theme2/typography.dart' as typography;
9 import 'package:sky/framework/widgets/ink_well.dart'; 9 import 'package:sky/widgets/ink_well.dart';
10 import 'package:sky/framework/widgets/basic.dart'; 10 import 'package:sky/widgets/basic.dart';
11 import 'package:sky/framework/rendering/paragraph.dart'; 11 import 'package:sky/rendering/paragraph.dart';
12 12
13 import 'stock_arrow.dart'; 13 import 'stock_arrow.dart';
14 import 'stock_data.dart'; 14 import 'stock_data.dart';
15 15
16 class StockRow extends Component { 16 class StockRow extends Component {
17 17
18 StockRow({ Stock stock }) : this.stock = stock, super(key: stock.symbol); 18 StockRow({ Stock stock }) : this.stock = stock, super(key: stock.symbol);
19 19
20 final Stock stock; 20 final Stock stock;
21 21
(...skipping 25 matching lines...) Expand all
47 padding: const EdgeDims(16.0, 16.0, 20.0, 16.0), 47 padding: const EdgeDims(16.0, 16.0, 20.0, 16.0),
48 height: kHeight, 48 height: kHeight,
49 decoration: const BoxDecoration( 49 decoration: const BoxDecoration(
50 border: const Border( 50 border: const Border(
51 bottom: const BorderSide(color: const sky.Color(0xFFF4F4F4)))), 51 bottom: const BorderSide(color: const sky.Color(0xFFF4F4F4)))),
52 child: new Flex(children) 52 child: new Flex(children)
53 ) 53 )
54 ); 54 );
55 } 55 }
56 } 56 }
OLDNEW
« no previous file with comments | « sky/examples/stocks2/lib/stock_menu.dart ('k') | sky/examples/widgets/container.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698