DrawerWrapper constructor
const
DrawerWrapper({
- Key? key,
- required OverlayPosition position,
- required Widget child,
- bool expands = false,
- bool draggable = true,
- Size extraSize = Size.zero,
- required Size size,
- bool showDragHandle = true,
- BorderRadiusGeometry? borderRadius,
- Size? dragHandleSize,
- EdgeInsets padding = EdgeInsets.zero,
- double? surfaceOpacity,
- double? surfaceBlur,
- Color? barrierColor,
- double? gapBeforeDragger,
- double? gapAfterDragger,
- required int stackIndex,
Implementation
const DrawerWrapper({
super.key,
required this.position,
required this.child,
this.expands = false,
this.draggable = true,
this.extraSize = Size.zero,
required this.size,
this.showDragHandle = true,
this.borderRadius,
this.dragHandleSize,
this.padding = EdgeInsets.zero,
this.surfaceOpacity,
this.surfaceBlur,
this.barrierColor,
this.gapBeforeDragger,
this.gapAfterDragger,
required this.stackIndex,
});