blob: 91fbb42d99eebab6bd428eea418e12ee89590f51 [file] [log] [blame]
// 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,
itemHeight: StockRow.kHeight,
itemBuilder: (stock) => new StockRow(stock: stock)
)
);
}
}