Index: sky/examples/stocks/lib/stock_row.dart |
diff --git a/sky/examples/stocks/lib/stock_row.dart b/sky/examples/stocks/lib/stock_row.dart |
index 6332366a66c48db12b08286e795892af687dcfcd..235183b3c674f0674d1674eebf47001cda9c2bef 100644 |
--- a/sky/examples/stocks/lib/stock_row.dart |
+++ b/sky/examples/stocks/lib/stock_row.dart |
@@ -39,14 +39,14 @@ class StockRow extends Component { |
this.stock = stock; |
} |
- Node build() { |
+ UINode build() { |
String lastSale = "\$${stock.lastSale.toStringAsFixed(2)}"; |
String changeInPrice = "${stock.percentChange.toStringAsFixed(2)}%"; |
if (stock.percentChange > 0) |
changeInPrice = "+" + changeInPrice; |
- List<Node> children = [ |
+ List<UINode> children = [ |
new StockArrow( |
percentChange: stock.percentChange |
), |