AppBarAnimationSlideLeft constructor

const AppBarAnimationSlideLeft({
  1. Key? key,
  2. required Widget child,
  3. int milliseconds = 400,
  4. bool withFade = true,
  5. double percents = 0.15,
  6. Curve switchInCurve = Curves.easeInSine,
  7. Curve switchOutCurve = Curves.easeOutSine,
  8. BoxDecoration background(
    1. BuildContext context
    )? = backgroundBoxDecoration,
})

Implementation

const AppBarAnimationSlideLeft({
  Key? key,
  required this.child,
  this.milliseconds = 400,
  this.withFade = true,
  this.percents = 0.15,
  this.switchInCurve = Curves.easeInSine,
  this.switchOutCurve = Curves.easeOutSine,
  this.background = backgroundBoxDecoration,
}) : super(key: key);