changeZoomFactor method

  1. @override
void changeZoomFactor(
  1. double zoomFactor, {
  2. bool notify = true,
  3. ScaleUpdateDetails? details,
})
override

Changes the current zoom factor.

Implementation

@override
void changeZoomFactor(double zoomFactor, {bool notify = true, ScaleUpdateDetails? details}) {
  super.changeZoomFactor(zoomFactor, notify: notify, details: details);
  for (DayViewController controller in _dayViewControllers.values) {
    controller.changeZoomFactor(zoomFactor, notify: notify, details: details);
  }
}