handleScaleStart method

void handleScaleStart(
  1. ScaleStartDetails details
)

Handles the start of a scaling gesture.

This method calls the onScaleStart callback with the provided details and then calls handleUpdateUI.

Implementation

void handleScaleStart(ScaleStartDetails details) {
  onScaleStart?.call(details);
  handleUpdateUI();
}