| Index: samples/swarm/swarm_ui_lib/touch/FxUtil.dart
|
| diff --git a/samples/swarm/swarm_ui_lib/touch/FxUtil.dart b/samples/swarm/swarm_ui_lib/touch/FxUtil.dart
|
| index b3858628604eca39f3b6b48528b4428b6dcc648b..686e69ee1453a40da23902086f07888d933e611f 100644
|
| --- a/samples/swarm/swarm_ui_lib/touch/FxUtil.dart
|
| +++ b/samples/swarm/swarm_ui_lib/touch/FxUtil.dart
|
| @@ -47,10 +47,10 @@ class FxUtil {
|
| // consider using CSSMatrix although that may be overkill.
|
| String transform = '${TRANSLATE_3D}(${x}px,${y}px,${z}px)';
|
| if (rotation != null) {
|
| - transform = transform.concat(' ${ROTATE}(${rotation}deg)');
|
| + transform += ' ${ROTATE}(${rotation}deg)';
|
| }
|
| if (scale != null) {
|
| - transform = transform.concat(' ${SCALE}(${scale})');
|
| + transform += ' ${SCALE}(${scale})';
|
| }
|
| style.transform = transform;
|
| if (originX != null || originY != null) {
|
|
|