runAllWithTiming top-level constant

dynamic Function(List<_InternalShared> tweenable, List<double> destinations, {Curve? curve, int? delay, int? duration, void onComplete()?}) const runAllWithTiming

Starts all the Tweenable with the withTiming animation to the corresponding destinations.

Examples

  runAllWithTiming([x,y],[40, 50])

This code will animate x to 40 and y to 50 with Curve animation. The Curve and other parameters of the animation can provided as named arguments

Implementation

const runAllWithTiming = _AnimationFunctions._runAllWithTiming;