How I can change curve animation for snackbar in flutter?

1k Views Asked by At

Help me! I need to change the default snackbar animation in flutter. And I need to change the curve animation when the snackbar appears. I want to change the standard animation to Curves.easeOutBack.

I tried to use animation property of Snackbar but nothing happened. And I tried to use Snackbar().withAnimation(_curve) but also nothing happened.

1

There are 1 best solutions below

0
krishnaacharyaa On

Use the package called another_flushbar


Flushbar(
  animationDuration: const Duration(seconds: 2),
  forwardAnimationCurve: Curves.easeIn, //  Here you change the curve animation
  reverseAnimationCurve: Curves.easeOut,//  Here you change the curve animation
  duration: const Duration(milliseconds: 3000),
  flushbarPosition: FlushbarPosition.BOTTOM,
  flushbarStyle: FlushbarStyle.FLOATING,
  message: "I am Bottom Snackbar",
  margin: const EdgeInsets.symmetric(vertical: 20),
  ).show(context);