ArcaneSheet.bottom constructor

const ArcaneSheet.bottom({
  1. String? id,
  2. required bool isOpen,
  3. required Widget child,
  4. VoidCallback? onClose,
  5. SheetSize size = SheetSize.auto,
  6. String? title,
  7. String? description,
  8. Widget? header,
  9. Widget? footer,
  10. bool showBackdrop = true,
  11. bool closeOnBackdropClick = true,
  12. bool showCloseButton = false,
  13. bool showDragHandle = true,
  14. String? maxWidth,
  15. bool escapeCloses = true,
  16. bool focusTrap = true,
  17. bool restoreFocus = true,
  18. Key? key,
})

Implementation

const ArcaneSheet.bottom({
  this.id,
  required this.isOpen,
  required this.child,
  this.onClose,
  this.size = SheetSize.auto,
  this.title,
  this.description,
  this.header,
  this.footer,
  this.showBackdrop = true,
  this.closeOnBackdropClick = true,
  this.showCloseButton = false,
  this.showDragHandle = true,
  this.maxWidth,
  this.escapeCloses = true,
  this.focusTrap = true,
  this.restoreFocus = true,
  super.key,
}) : position = SheetPosition.bottom;