BottomSheetThemeData constructor

const BottomSheetThemeData(
  1. {Color? backgroundColor,
  2. Color? surfaceTintColor,
  3. double? elevation,
  4. Color? modalBackgroundColor,
  5. Color? modalBarrierColor,
  6. Color? shadowColor,
  7. double? modalElevation,
  8. ShapeBorder? shape,
  9. bool? showDragHandle,
  10. Color? dragHandleColor,
  11. Size? dragHandleSize,
  12. Clip? clipBehavior,
  13. BoxConstraints? constraints}
)

Creates a theme that can be used for ThemeData.bottomSheetTheme.

Implementation

const BottomSheetThemeData({
  this.backgroundColor,
  this.surfaceTintColor,
  this.elevation,
  this.modalBackgroundColor,
  this.modalBarrierColor,
  this.shadowColor,
  this.modalElevation,
  this.shape,
  this.showDragHandle,
  this.dragHandleColor,
  this.dragHandleSize,
  this.clipBehavior,
  this.constraints,
});