mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-02 11:43:19 +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));
|
||||
instance.onTapCancel = (pointerId) =>
|
||||
_tapHandlers.forEach((h) => h.onTapCancel?.call(pointerId));
|
||||
instance.onTap =
|
||||
(pointerId) => _tapHandlers.forEach((h) => h.onTap?.call(pointerId));
|
||||
});
|
||||
instance.onTap = (pointerId) =>
|
||||
_tapHandlers.forEach((h) => h.onTap?.call(pointerId));
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
if (game is MultiTouchDragDetector) {
|
||||
@ -80,7 +81,8 @@ Widget _applyAdvancedGesturesDetectors(Game game, Widget child) {
|
||||
|
||||
return drag;
|
||||
};
|
||||
});
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
return RawGestureDetector(
|
||||
|
||||
Reference in New Issue
Block a user