handleScaleEnd method

  1. @override
void handleScaleEnd(
  1. ScaleEndDetails details
)

Called when the pointers are no longer in contact with the screen.

Implementation

@override
void handleScaleEnd(ScaleEndDetails details) {
  if (!enablePinching) {
    return;
  }
  _previousScale = null;
  _updateZoomEndDetails();
}