animateListCyberJitter method
- Glitch Jitter
Implementation
Widget animateListCyberJitter(
{required int index,
int intervalMs = 40,
int durationMs = 500,
bool animate = true}) {
if (!animate) return this;
return this
.animate(delay: _getDelay(index, intervalMs).ms)
.fadeIn(duration: 200.ms)
.shakeX(amount: 5, hz: 10, duration: durationMs.ms)
.moveX(begin: 20, end: 0);
}