ScreenTransitionAnimationSettings constructor

const ScreenTransitionAnimationSettings({
  1. bool animateTabTransition = false,
  2. Duration duration = const Duration(milliseconds: 300),
  3. Curve curve = Curves.ease,
  4. ScreenTransitionAnimationType screenTransitionAnimationType = ScreenTransitionAnimationType.fadeIn,
})

Implementation

const ScreenTransitionAnimationSettings({
  this.animateTabTransition = false,
  this.duration = const Duration(milliseconds: 300),
  this.curve = Curves.ease,
  this.screenTransitionAnimationType = ScreenTransitionAnimationType.fadeIn,
});