ClueSidePage constructor

const ClueSidePage({
  1. Key? key,
  2. String? menuTitle,
  3. Widget? headerLeft,
  4. Widget? headerCenter,
  5. Widget? headerRight,
  6. required Widget body,
  7. Widget? bottomLeft,
  8. Widget? bottomCenter,
  9. Widget? bottomRight,
  10. bool showHeaderDivider = true,
  11. bool showBottomDivider = true,
})

Creates a ClueSidePage.

menuTitle is the title of the menu. headerLeft is the widget displayed on the left side of the header. headerCenter is the widget displayed in the center of the header. headerRight is the widget displayed on the right side of the header. body is the main content of the page. bottomLeft is the widget displayed on the left side of the footer. bottomCenter is the widget displayed in the center of the footer. bottomRight is the widget displayed on the right side of the footer. showHeaderDivider determines whether to show the divider below the header. showBottomDivider determines whether to show the divider above the footer.

Implementation

const ClueSidePage({
  super.key,
  this.menuTitle,
  this.headerLeft,
  this.headerCenter,
  this.headerRight,
  required this.body,
  this.bottomLeft,
  this.bottomCenter,
  this.bottomRight,
  this.showHeaderDivider = true,
  this.showBottomDivider = true,
});