NiceBottomSheet constructor

const NiceBottomSheet({
  1. Key? key,
  2. required Widget child,
  3. String? title,
  4. List<Widget>? actions,
  5. bool showDragHandle = true,
  6. double maxHeightFactor = 0.9,
  7. EdgeInsetsGeometry? contentPadding,
})

Implementation

const NiceBottomSheet({
  super.key,
  required this.child,
  this.title,
  this.actions,
  this.showDragHandle = true,
  this.maxHeightFactor = 0.9,
  this.contentPadding,
});