RippleBackdropAnimatePage constructor

const RippleBackdropAnimatePage({
  1. Key? key,
  2. required Widget child,
  3. bool childFade = false,
  4. int duration = 300,
  5. double blurRadius = 15.0,
  6. Widget? bottomButton,
  7. double bottomHeight = kBottomNavigationBarHeight,
  8. bool bottomButtonRotate = true,
  9. double bottomButtonRotateDegree = 45.0,
})

Implementation

const RippleBackdropAnimatePage({
  Key? key,
  required this.child,
  this.childFade = false,
  this.duration = 300,
  this.blurRadius = 15.0,
  this.bottomButton,
  this.bottomHeight = kBottomNavigationBarHeight,
  this.bottomButtonRotate = true,
  this.bottomButtonRotateDegree = 45.0,
}) : super(key: key);