ScreenTransitionAnimation constructor

const ScreenTransitionAnimation({
  1. bool animateTabTransition = false,
  2. Duration duration = const Duration(milliseconds: 200),
  3. Curve curve = Curves.ease,
})

Implementation

const ScreenTransitionAnimation({
  this.animateTabTransition = false,
  this.duration = const Duration(milliseconds: 200),
  this.curve = Curves.ease,
});