FlickerAnimatedTextKit constructor
FlickerAnimatedTextKit({
- Key? key,
- required List<
String> text, - TextAlign textAlign = TextAlign.start,
- TextStyle? textStyle,
- TextDirection textDirection = TextDirection.ltr,
- Duration speed = const Duration(milliseconds: 1600),
- double entryEnd = 0.5,
- VoidCallback? onTap,
- void onNext()?,
- void onNextBeforePause()?,
- VoidCallback? onFinished,
- bool isRepeatingAnimation = true,
- int totalRepeatCount = 3,
- bool repeatForever = false,
- bool displayFullTextOnTap = false,
- bool stopPauseOnTap = false,
Implementation
FlickerAnimatedTextKit({
Key? key,
required List<String> text,
TextAlign textAlign = TextAlign.start,
TextStyle? textStyle,
TextDirection textDirection = TextDirection.ltr,
Duration speed = const Duration(milliseconds: 1600),
double entryEnd = 0.5,
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,
}) : super(
key: key,
animatedTexts:
_animatedTexts(text, textAlign, textStyle, speed, entryEnd),
onTap: onTap,
onNext: onNext,
onNextBeforePause: onNextBeforePause,
onFinished: onFinished,
isRepeatingAnimation: isRepeatingAnimation,
totalRepeatCount: totalRepeatCount,
repeatForever: repeatForever,
displayFullTextOnTap: displayFullTextOnTap,
stopPauseOnTap: stopPauseOnTap,
);