ClueSidePage constructor
const
ClueSidePage({})
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,
});