MLayoutScroll constructor

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

Implementation

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