FractionalBox constructor

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

Implementation

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