OverflowBoxModifier constructor

const OverflowBoxModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. AlignmentGeometry alignment = Alignment.center,
  5. double? minWidth,
  6. double? maxWidth,
  7. double? minHeight,
  8. double? maxHeight,
})

Creates a widget that lets its child overflow itself.

Implementation

const OverflowBoxModifier({
  super.key,
  super.child,
  super.modifierKey,
  this.alignment = Alignment.center,
  this.minWidth,
  this.maxWidth,
  this.minHeight,
  this.maxHeight,
});