ArcaneDrawer.bottom constructor

const ArcaneDrawer.bottom({
  1. String? id,
  2. required bool isOpen,
  3. required Widget child,
  4. VoidCallback? onClose,
  5. DrawerSize size = DrawerSize.md,
  6. Widget? header,
  7. Widget? footer,
  8. bool showBackdrop = true,
  9. bool closeOnBackdropClick = true,
  10. bool showCloseButton = false,
  11. String? width,
  12. String? height,
  13. bool escapeCloses = true,
  14. bool focusTrap = true,
  15. bool restoreFocus = true,
  16. ArcaneStyleData? styles,
  17. ArcaneDecoration? decoration,
  18. Key? key,
})

Implementation

const ArcaneDrawer.bottom({
  this.id,
  required this.isOpen,
  required this.child,
  this.onClose,
  this.size = DrawerSize.md,
  this.header,
  this.footer,
  this.showBackdrop = true,
  this.closeOnBackdropClick = true,
  this.showCloseButton = false,
  this.width,
  this.height,
  this.escapeCloses = true,
  this.focusTrap = true,
  this.restoreFocus = true,
  this.styles,
  this.decoration,
  super.key,
}) : position = DrawerPosition.bottom;