flutter/examples/stocks/lib/stock_list.dart
2015-09-18 10:30:47 -07:00

23 lines
570 B
Dart

// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
part of stocks;
class Stocklist extends Component {
Stocklist({ Key key, this.stocks }) : super(key: key);
final List<Stock> stocks;
Widget build() {
return new Material(
type: MaterialType.canvas,
child: new ScrollableList<Stock>(
items: stocks,
itemExtent: StockRow.kHeight,
itemBuilder: (Stock stock) => new StockRow(stock: stock)
)
);
}
}