FPopoverMotion constructor
const
FPopoverMotion({
- Duration entranceDuration = const Duration(milliseconds: 100),
- Duration exitDuration = const Duration(milliseconds: 100),
- Curve expandCurve = Curves.easeOutCubic,
- Curve collapseCurve = Curves.easeInCubic,
- Curve fadeInCurve = Curves.linear,
- Curve fadeOutCurve = Curves.linear,
- Animatable<
double> scaleTween = const FImmutableTween(begin: 0.93, end: 1), - Animatable<
double> fadeTween = const FImmutableTween(begin: 0, end: 1),
Creates a FPopoverMotion.
Implementation
const FPopoverMotion({
this.entranceDuration = const Duration(milliseconds: 100),
this.exitDuration = const Duration(milliseconds: 100),
this.expandCurve = Curves.easeOutCubic,
this.collapseCurve = Curves.easeInCubic,
this.fadeInCurve = Curves.linear,
this.fadeOutCurve = Curves.linear,
this.scaleTween = const FImmutableTween(begin: 0.93, end: 1),
this.fadeTween = const FImmutableTween(begin: 0, end: 1),
});