standardEasing top-level constant

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

The standard easing curve in the Material 2 specification.

Elements that begin and end at rest use standard easing. They speed up quickly and slow down gradually, in order to emphasize the end of the transition.

See also:

Implementation

@Deprecated(
  'Use Easing.legacy (M2) or Easing.standard (M3) instead. '
  'This curve is updated in M3. '
  'This feature was deprecated after v3.18.0-0.1.pre.'
)
const Curve standardEasing = Curves.fastOutSlowIn;