| Index: sky/examples/stocks-fn/lib/stock_row.dart
|
| diff --git a/sky/examples/stocks-fn/lib/stock_row.dart b/sky/examples/stocks-fn/lib/stock_row.dart
|
| index 94abba7adbe2dd2c4d59c98b04d1502521958bcb..6332366a66c48db12b08286e795892af687dcfcd 100644
|
| --- a/sky/examples/stocks-fn/lib/stock_row.dart
|
| +++ b/sky/examples/stocks-fn/lib/stock_row.dart
|
| @@ -10,7 +10,6 @@ import 'stock_data.dart';
|
|
|
| class StockRow extends Component {
|
| static final Style _style = new Style('''
|
| - transform: translateX(0);
|
| display: flex;
|
| align-items: center;
|
| border-bottom: 1px solid #F4F4F4;
|
| @@ -68,9 +67,6 @@ class StockRow extends Component {
|
| )
|
| ];
|
|
|
| - return new InkWell(
|
| - style: _style,
|
| - children: children
|
| - );
|
| + return new StyleNode(new InkWell(children: children), _style);
|
| }
|
| }
|
|
|