animateWidgetBarGrow method
- Bar Grow
Implementation
Widget animateWidgetBarGrow(
{int delayMs = 0,
int durationMs = 800,
bool repeat = false,
bool animate = true}) {
if (!animate) return this;
return _baseAnimate(delayMs: delayMs, repeat: repeat)
.fadeIn(duration: 400.ms)
.scaleY(
begin: 0,
end: 1,
duration: durationMs.ms,
curve: Curves.easeOutBack,
alignment: Alignment.bottomCenter);
}