ArcaneSheet.bottom constructor
const
ArcaneSheet.bottom({
- required bool isOpen,
- required Component child,
- VoidCallback? onClose,
- SheetSize size = SheetSize.auto,
- String? title,
- String? description,
- Component? header,
- bool showBackdrop = true,
- bool closeOnBackdropClick = true,
- bool showCloseButton = false,
- bool showDragHandle = true,
- String? maxWidth,
- Key? key,
Implementation
const ArcaneSheet.bottom({
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,
super.key,
}) : position = SheetPosition.bottom;