buildGestureLayer method
Implementation
Widget buildGestureLayer() {
return Positioned.fill(
child: GestureDetector(
behavior: HitTestBehavior.translucent,
onScaleStart: onScaleStart,
onScaleUpdate: onScaleUpdate,
onLongPressStart: _onMoveStart,
onLongPressMoveUpdate: _onMoveUpdate,
onLongPressEnd: _onMoveEnd,
),
);
}