SheetContentScaffold constructor

const SheetContentScaffold({
  1. Key? key,
  2. bool primary = false,
  3. bool extendBody = false,
  4. bool extendBodyBehindAppBar = false,
  5. ResizeScaffoldBehavior resizeBehavior = const ResizeScaffoldBehavior.avoidBottomInset(),
  6. bool appbarDraggable = true,
  7. Color? backgroundColor,
  8. PreferredSizeWidget? appBar,
  9. required Widget body,
  10. Widget? bottomBar,
})

Implementation

const SheetContentScaffold({
  super.key,
  this.primary = false,
  this.extendBody = false,
  this.extendBodyBehindAppBar = false,
  this.resizeBehavior = const ResizeScaffoldBehavior.avoidBottomInset(),
  this.appbarDraggable = true,
  this.backgroundColor,
  this.appBar,
  required this.body,
  this.bottomBar,
});