animateWidgetGhostFloat method
- Ghost Float (Slow)
Implementation
Widget animateWidgetGhostFloat(
{int durationMs = 3000, bool repeat = true, bool animate = true}) {
if (!animate) return this;
return _baseAnimate(
repeat: repeat,
reverse: true,
)
.moveY(
begin: 0,
end: -15,
duration: durationMs.ms,
curve: Curves.easeInOutQuad)
.blurXY(begin: 0, end: 2, duration: durationMs.ms);
}