MLayoutFix constructor

const MLayoutFix({
  1. Key? key,
  2. PreferredSizeWidget? appBar,
  3. required Widget child,
  4. EdgeInsets? childPadding,
  5. Widget? bottomNavigationBar,
  6. Color? backgroundColor = Colors.white,
  7. String? backgroundPath,
})

Implementation

const MLayoutFix({
  super.key,
  this.appBar,
  required this.child,
  this.childPadding,
  this.bottomNavigationBar,
  this.backgroundColor = Colors.white,
  this.backgroundPath,
});