mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-03 12:28:03 +08:00
Adding missing trailing coma
This commit is contained in:
@ -60,9 +60,10 @@ Widget _applyAdvancedGesturesDetectors(Game game, Widget child) {
|
|||||||
_tapHandlers.forEach((h) => h.onTapUp?.call(pointerId, d));
|
_tapHandlers.forEach((h) => h.onTapUp?.call(pointerId, d));
|
||||||
instance.onTapCancel = (pointerId) =>
|
instance.onTapCancel = (pointerId) =>
|
||||||
_tapHandlers.forEach((h) => h.onTapCancel?.call(pointerId));
|
_tapHandlers.forEach((h) => h.onTapCancel?.call(pointerId));
|
||||||
instance.onTap =
|
instance.onTap = (pointerId) =>
|
||||||
(pointerId) => _tapHandlers.forEach((h) => h.onTap?.call(pointerId));
|
_tapHandlers.forEach((h) => h.onTap?.call(pointerId));
|
||||||
});
|
},
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (game is MultiTouchDragDetector) {
|
if (game is MultiTouchDragDetector) {
|
||||||
@ -80,7 +81,8 @@ Widget _applyAdvancedGesturesDetectors(Game game, Widget child) {
|
|||||||
|
|
||||||
return drag;
|
return drag;
|
||||||
};
|
};
|
||||||
});
|
},
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return RawGestureDetector(
|
return RawGestureDetector(
|
||||||
|
|||||||
Reference in New Issue
Block a user