resizingIntervalUpdated method

  1. @override
void resizingIntervalUpdated(
  1. _AnimatedSpaceInterval interval,
  2. double delta
)
override

The specified interval has been resized by a delta amount. If this interval is above the first item layouted in the list view, this amount will be added up to a cumulative variabile.

Implementation

@override
void resizingIntervalUpdated(_AnimatedSpaceInterval interval, double delta) {
  super.resizingIntervalUpdated(interval, delta);
  markSafeNeedsLayout();
}