| 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 fc0555bce72131ab34788224bd9ef536902fa699..1028017247a41e66177e2b8f313558cf710924b5 100644
|
| --- a/sky/examples/stocks2/lib/stock_row.dart
|
| +++ b/sky/examples/stocks2/lib/stock_row.dart
|
| @@ -37,8 +37,8 @@ class StockRow extends Component {
|
| ];
|
|
|
| // TODO(hansmuller): An explicit |height| shouldn't be needed
|
| - return new InkWell(children: [
|
| - new Container(
|
| + return new InkWell(
|
| + child: new Container(
|
| padding: const EdgeDims(16.0, 16.0, 20.0, 16.0),
|
| height: kHeight,
|
| decoration: const BoxDecoration(
|
| @@ -46,6 +46,6 @@ class StockRow extends Component {
|
| bottom: const BorderSide(color: const sky.Color(0xFFF4F4F4)))),
|
| child: new Flex(children)
|
| )
|
| - ]);
|
| + );
|
| }
|
| }
|
|
|