ArcaneSheet constructor
const
ArcaneSheet({
- required bool isOpen,
- required Widget child,
- VoidCallback? onClose,
- SheetPosition position = SheetPosition.bottom,
- SheetSize size = SheetSize.auto,
- String? title,
- String? description,
- Widget? header,
- bool showBackdrop = true,
- bool closeOnBackdropClick = true,
- bool showCloseButton = true,
- bool showDragHandle = true,
- String? maxWidth,
- Key? key,
Implementation
const ArcaneSheet({
required this.isOpen,
required this.child,
this.onClose,
this.position = SheetPosition.bottom,
this.size = SheetSize.auto,
this.title,
this.description,
this.header,
this.footer,
this.showBackdrop = true,
this.closeOnBackdropClick = true,
this.showCloseButton = true,
this.showDragHandle = true,
this.maxWidth,
super.key,
});