| Index: sky/examples/stocks/lib/stock_list.dart
|
| diff --git a/sky/examples/stocks/lib/stock_list.dart b/sky/examples/stocks/lib/stock_list.dart
|
| index 04738ba4d4b9588822b66cc9f50be4520cd658b2..4ad488ac2d98297af16f654a9fde1c7c1b4f29f2 100644
|
| --- a/sky/examples/stocks/lib/stock_list.dart
|
| +++ b/sky/examples/stocks/lib/stock_list.dart
|
| @@ -18,7 +18,7 @@ class Stocklist extends FixedHeightScrollable {
|
| this.query
|
| }) : super(key: key, scrollBehavior: new OverscrollBehavior());
|
|
|
| - List<Node> buildItems(int start, int count) {
|
| + List<UINode> buildItems(int start, int count) {
|
| return stocks
|
| .skip(start)
|
| .where((stock) => query == null || stock.symbol.contains(
|
|
|