FullscreenDraggableBottomSheet constructor

const FullscreenDraggableBottomSheet({
  1. Key? key,
  2. double initialChildSize = .6,
  3. double minChildSize = .2,
  4. double maxChildSize = 1,
  5. double minFocusableExtent = .5,
  6. double? contentHeight,
  7. bool updateInsets = true,
  8. Color? backgroundColor,
  9. double? elevation,
  10. ShapeBorder? shape,
  11. Clip? clipBehavior,
  12. required Widget child,
})

Implementation

const FullscreenDraggableBottomSheet({
  super.key,
  this.initialChildSize = .6,
  this.minChildSize = .2,
  this.maxChildSize = 1,
  this.minFocusableExtent = .5,
  this.contentHeight,
  this.updateInsets = true,
  this.backgroundColor,
  this.elevation,
  this.shape,
  this.clipBehavior,
  required this.child,
});