decelerateEasing top-level constant

  1. @Deprecated('Use Easing.legacyDecelerate (M2) or Easing.standardDecelerate (M3) instead. ' 'This curve is updated in M3. ' 'This feature was deprecated after v3.18.0-0.1.pre.')
Curve const decelerateEasing

The decelerate easing curve in the Material 2 specification.

Incoming elements are animated using deceleration easing, which starts a transition at peak velocity (the fastest point of an element’s movement) and ends at rest.

See also:

Implementation

@Deprecated(
  'Use Easing.legacyDecelerate (M2) or Easing.standardDecelerate (M3) instead. '
  'This curve is updated in M3. '
  'This feature was deprecated after v3.18.0-0.1.pre.'
)
const Curve decelerateEasing = Cubic(0.0, 0.0, 0.2, 1.0);