EntrancePageTransition constructor

const EntrancePageTransition({
  1. Key? key,
  2. required Widget child,
  3. required Animation<double> animation,
  4. bool vertical = true,
  5. bool reverse = false,
  6. double startFrom = 0.25,
})

Creates an entrance page transition

Implementation

const EntrancePageTransition({
  super.key,
  required this.child,
  required this.animation,
  this.vertical = true,
  this.reverse = false,
  this.startFrom = 0.25,
});