handleScaleStart method

  1. @override
void handleScaleStart(
  1. ScaleStartDetails details
)

Called when the pointers in contact with the screen and initial scale of 1.0.

Implementation

@override
void handleScaleStart(ScaleStartDetails details) {
  if (!enablePinching) {
    return;
  }
  _previousScale = null;
  _updateZoomStartDetails();
}