FKappaAnimatedView constructor

const FKappaAnimatedView({
  1. Key? key,
  2. required Widget child,
  3. FKappaAnimationType type = FKappaAnimationType.fade,
  4. Duration duration = FKappaAnimationConstants.medium,
  5. Duration delay = Duration.zero,
  6. double offset = 30.0,
  7. bool animate = true,
})

Implementation

const FKappaAnimatedView({
  super.key,
  required this.child,
  this.type = FKappaAnimationType.fade,
  this.duration = FKappaAnimationConstants.medium,
  this.delay = Duration.zero,
  this.offset = 30.0,
  this.animate = true,
});