A collection of curves used by ShapeShifter. Mostly used by animated_vector_gen.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
- accelerate → const Curve
- A curve that starts slow and accelerates gradually.
- accelerateDecelerate → const Curve
- A curve that combines the accelerate and decelerate curve.
- anticipate → const Curve
- A curve that goes back to before the lower 0.0 bound to then gradually decelerate.
- anticipateOvershoot → const Curve
- A curve that combines both anticipate and overshoot.
- bounce → const Curve
- A curve that is very similar to flutter's Curves.bounceOut.
- decelerate → const Curve
- A curve that starts fast and decelerates gradually.
- fastOutLinearIn → const Curve
- A curve that starts linearly and ends fast.
- fastOutSlowIn → const Curve
- A curve that starts slowly and ends fast.
- linear → const Curve
- The linear curve. Default one, applies no modifications to the base animation.
- linearOutSlowIn → const Curve
- A curve that starts slowly and ends linearly.
- overshoot → const Curve
- A curve that accelerates gradually and goes over the 1.0 bound, to then bounce back in.