delayBefore property
final
Delay before first animation round.
Default is Duration.zero.
Example:
TextScroll(
'Start animation after 1 sec delay',
delayBefore: Duration(seconds: 1),
)
Implementation
final Duration? delayBefore;
Delay before first animation round.
Default is Duration.zero.
TextScroll(
'Start animation after 1 sec delay',
delayBefore: Duration(seconds: 1),
)
final Duration? delayBefore;