BounceEffect constructor
const
BounceEffect({})
Creates a vertical bounce animation per character.
duration — animation cycle duration per character.
curve — easing curve for the bounce.
height — maximum bounce height in logical pixels.
bounceCount — number of bounce cycles per character.
delayBetweenChars — stagger delay between characters.
Implementation
const BounceEffect({
super.duration = const Duration(milliseconds: 1000),
super.curve = Curves.easeOut,
this.height = 12.0,
this.bounceCount = 1,
super.delayBetweenChars = const Duration(milliseconds: 60),
});