OudsBottomSheetScaffold constructor

const OudsBottomSheetScaffold({
  1. Key? key,
  2. required WidgetBuilder sheetContent,
  3. required WidgetBuilder content,
  4. double sheetPeekHeight = kOudsBottomSheetPeekHeight,
  5. bool sheetDragHandle = true,
  6. bool sheetSwipeEnabled = true,
  7. PreferredSizeWidget? topBar,
  8. ValueChanged<bool>? onExpansionChanged,
})

Implementation

const OudsBottomSheetScaffold({
  super.key,
  required this.sheetContent,
  required this.content,
  this.sheetPeekHeight = kOudsBottomSheetPeekHeight,
  this.sheetDragHandle = true,
  this.sheetSwipeEnabled = true,
  this.topBar,
  this.onExpansionChanged,
});