pauseAfterRound property
final
After each round, a pause of this duration occurs.
Sample code
After every round, this marquee pauses for one second.
Marquee(
pauseAfterRound: const Duration(seconds: 1),
text: 'Pausing for some time after every round.',
)
See also:
- accelerationDuration and decelerationDuration to make the transitions between moving and paused state smooth.
- accelerationCurve and decelerationCurve to have more control about how the transition between moving and pausing state occur.
Implementation
final Duration pauseAfterRound;