ArcaneSheet.bottom constructor
const
ArcaneSheet.bottom({
- String? id,
- required bool isOpen,
- required Widget child,
- VoidCallback? onClose,
- SheetSize size = SheetSize.auto,
- String? title,
- String? description,
- Widget? header,
- bool showBackdrop = true,
- bool closeOnBackdropClick = true,
- bool showCloseButton = false,
- bool showDragHandle = true,
- String? maxWidth,
- bool escapeCloses = true,
- bool focusTrap = true,
- bool restoreFocus = true,
- 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;