BounceAnimatedTextKit constructor
BounceAnimatedTextKit({
- Key? key,
- required List<
String> text, - TextAlign textAlign = TextAlign.start,
- TextStyle? textStyle,
- double bounceHeight = 50.0,
- Duration duration = const Duration(milliseconds: 1500),
- Duration pause = const Duration(milliseconds: 1000),
- VoidCallback? onTap,
- void onNext()?,
- void onNextBeforePause()?,
- VoidCallback? onFinished,
- bool isRepeatingAnimation = true,
- int totalRepeatCount = 3,
- bool repeatForever = false,
- bool displayFullTextOnTap = false,
- bool stopPauseOnTap = false,
- Curve curve = Curves.elasticOut,
Implementation
BounceAnimatedTextKit({
Key? key,
required List<String> text,
TextAlign textAlign = TextAlign.start,
TextStyle? textStyle,
double bounceHeight = 50.0,
Duration duration = const Duration(milliseconds: 1500),
Duration pause = const Duration(milliseconds: 1000),
VoidCallback? onTap,
void Function(int, bool)? onNext,
void Function(int, bool)? onNextBeforePause,
VoidCallback? onFinished,
bool isRepeatingAnimation = true,
int totalRepeatCount = 3,
bool repeatForever = false,
bool displayFullTextOnTap = false,
bool stopPauseOnTap = false,
Curve curve = Curves.elasticOut,
}) : super(
key: key,
animatedTexts: _animatedTexts(
text,
textAlign,
textStyle,
duration,
bounceHeight,
curve,
),
pause: pause,
displayFullTextOnTap: displayFullTextOnTap,
stopPauseOnTap: stopPauseOnTap,
onTap: onTap,
onNext: onNext,
onNextBeforePause: onNextBeforePause,
onFinished: onFinished,
isRepeatingAnimation: isRepeatingAnimation,
totalRepeatCount: totalRepeatCount,
repeatForever: repeatForever,
);