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

Side by Side Diff: sky/sdk/example/stocks/lib/stock_list.dart

Issue 1235233004: Make the popup menu width animation work (Closed) Base URL: git@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
« no previous file with comments | « no previous file | sky/sdk/lib/widgets/fixed_height_scrollable.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 'package:sky/widgets/scrollable_list.dart'; 5 import 'package:sky/widgets/scrollable_list.dart';
6 import 'package:sky/widgets/material.dart';
6 import 'package:sky/widgets/basic.dart'; 7 import 'package:sky/widgets/basic.dart';
7 8
8 import 'stock_data.dart'; 9 import 'stock_data.dart';
9 import 'stock_row.dart'; 10 import 'stock_row.dart';
10 11
11 class Stocklist extends Component { 12 class Stocklist extends Component {
12 Stocklist({ String key, this.stocks }) : super(key: key); 13 Stocklist({ String key, this.stocks }) : super(key: key);
13 14
14 final List<Stock> stocks; 15 final List<Stock> stocks;
15 16
16 Widget build() { 17 Widget build() {
17 return new ScrollableList<Stock>( 18 return new Material(
18 items: stocks, 19 type: MaterialType.canvas,
19 itemHeight: StockRow.kHeight, 20 child: new ScrollableList<Stock>(
20 itemBuilder: (stock) => new StockRow(stock: stock) 21 items: stocks,
22 itemHeight: StockRow.kHeight,
23 itemBuilder: (stock) => new StockRow(stock: stock)
24 )
21 ); 25 );
22 } 26 }
23 } 27 }
OLDNEW
« no previous file with comments | « no previous file | sky/sdk/lib/widgets/fixed_height_scrollable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698