ModulaFractionallySizedBox constructor

const ModulaFractionallySizedBox({
  1. required Widget child,
  2. Key? key,
  3. double? widthFactor,
  4. double? heightFactor,
  5. AlignmentGeometry alignment = Alignment.center,
})

Implementation

const ModulaFractionallySizedBox({
  required this.child,
  super.key,
  this.widthFactor,
  this.heightFactor,
  this.alignment = Alignment.center,
});