| Index: sky/examples/stocks2/lib/stock_row.dart
|
| diff --git a/sky/examples/stocks2/lib/stock_row.dart b/sky/examples/stocks2/lib/stock_row.dart
|
| index 32f1c81fe799b937405598108a327bfd04cb7a84..7e3ee7d163b35aac6fddba250005de057466661e 100644
|
| --- a/sky/examples/stocks2/lib/stock_row.dart
|
| +++ b/sky/examples/stocks2/lib/stock_row.dart
|
| @@ -19,13 +19,13 @@ class StockRow extends Component {
|
|
|
| static const double kHeight = 79.0;
|
|
|
| - UINode build() {
|
| + Widget build() {
|
| String lastSale = "\$${stock.lastSale.toStringAsFixed(2)}";
|
|
|
| String changeInPrice = "${stock.percentChange.toStringAsFixed(2)}%";
|
| if (stock.percentChange > 0) changeInPrice = "+" + changeInPrice;
|
|
|
| - List<UINode> children = [
|
| + List<Widget> children = [
|
| new Container(
|
| child: new StockArrow(percentChange: stock.percentChange),
|
| margin: const EdgeDims.only(right: 5.0)),
|
|
|