SheetableWidget constructor

const SheetableWidget({
  1. Key? key,
  2. double minHeight = 100,
  3. double maxHeight = 500,
  4. bool expandToFullHeight = false,
  5. VoidCallback? onSheetHidden,
  6. required Widget contentBuilder(
    1. ScrollController
    ),
})

Implementation

const SheetableWidget({
  super.key,
  this.minHeight = 100,
  this.maxHeight = 500,
  this.expandToFullHeight = false,
  this.onSheetHidden,
  required this.contentBuilder,
});