| Index: samples/ui_lib/view/ConveyorView.dart
|
| diff --git a/samples/ui_lib/view/ConveyorView.dart b/samples/ui_lib/view/ConveyorView.dart
|
| index da62fed370805c3c233a523deddef4b42898f285..0a31ca74cf348d62dbc6bed10cc0fb0b0d475725 100644
|
| --- a/samples/ui_lib/view/ConveyorView.dart
|
| +++ b/samples/ui_lib/view/ConveyorView.dart
|
| @@ -86,7 +86,7 @@ class ConveyorView extends CompositeView {
|
| */
|
| View addChild(View view) {
|
| view.addClass('conveyor-item');
|
| - view.transform = 'translate3d(' + (childViews.length * 100) + '%, 0, 0)';
|
| + view.transform = 'translate3d(${(childViews.length * 100)}%, 0, 0)';
|
| return super.addChild(view);
|
| }
|
|
|
|
|