CMSLayout constructor

const CMSLayout({
  1. required Widget child,
  2. Widget? leftBar,
  3. Widget? rightBar,
  4. Widget? header,
  5. Widget? footer,
  6. Widget? top,
  7. Widget? bottom,
  8. List<Widget>? options,
  9. double mainAxisSpace = 0,
  10. double crossAxisSpace = 0,
  11. double leftBarWidth = 200,
  12. double rightBarWidth = 200,
  13. Color? borderColor,
  14. BorderSide? sideBorder,
  15. BorderSide? headerBorder,
  16. BorderSide? footerBorder,
  17. Color? headerBackgroundColor,
  18. Color? footerBackgroundColor,
})

Implementation

const CMSLayout({
  required this.child,
  this.leftBar,
  this.rightBar,
  this.header,
  this.footer,
  this.top,
  this.bottom,
  this.options,
  this.mainAxisSpace = 0,
  this.crossAxisSpace = 0,
  this.leftBarWidth = 200,
  this.rightBarWidth = 200,
  this.borderColor,
  this.sideBorder,
  this.headerBorder,
  this.footerBorder,
  this.headerBackgroundColor,
  this.footerBackgroundColor,
});