PageTransitionSettings.base constructor

const PageTransitionSettings.base({
  1. Widget? childCurrent,
  2. BuildContext? context,
  3. bool? inheritTheme = false,
  4. Curve? curve = Curves.easeInOut,
  5. Alignment? alignment,
  6. Duration? duration,
  7. Duration? reverseDuration,
  8. bool? fullscreenDialog = false,
  9. bool? opaque = false,
  10. bool? isIos,
  11. PageTransitionsBuilder? matchingBuilder = const CupertinoPageTransitionsBuilder(),
})

Base constructor

Implementation

const PageTransitionSettings.base({
  this.childCurrent,
  this.context,
  this.inheritTheme = false,
  this.curve = Curves.easeInOut,
  this.alignment,
  this.duration,
  this.reverseDuration,
  this.fullscreenDialog = false,
  this.opaque = false,
  this.isIos,
  this.matchingBuilder = const CupertinoPageTransitionsBuilder(),
});