MinFloatingDefaults constructor

const MinFloatingDefaults({
  1. Duration duration = const Duration(milliseconds: 140),
  2. Duration? reverseDuration,
  3. Curve curve = Curves.easeOut,
  4. Curve reverseCurve = Curves.easeIn,
  5. bool closeOnTapOutside = true,
  6. bool closeOnEscape = true,
  7. bool closeOnScroll = false,
  8. MinUiAnchorSide side = const MinUiAnchorSide.below(),
  9. Color barrierColor = const Color(0x00000000),
  10. bool useDimmedBarrier = false,
})

Implementation

const MinFloatingDefaults({
  this.duration = const Duration(milliseconds: 140),
  this.reverseDuration,
  this.curve = Curves.easeOut,
  this.reverseCurve = Curves.easeIn,
  this.closeOnTapOutside = true,
  this.closeOnEscape = true,
  this.closeOnScroll = false,
  this.side = const MinUiAnchorSide.below(),
  this.barrierColor = const Color(0x00000000),
  this.useDimmedBarrier = false,
});