| OLD | NEW |
| 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 } |
| OLD | NEW |