handleDoubleTap method

  1. @override
void handleDoubleTap(
  1. Offset position
)

Called when pointer tap has contacted the screen double time in behavior.

Implementation

@override
void handleDoubleTap(Offset position) {
  if (enableDoubleTapZooming) {
    _zoomInAndOut(0.25, origin: position);
  }
}