largeScreen method

Scaffold largeScreen(
  1. BuildContext context
)

Implementation

Scaffold largeScreen(BuildContext context) {
  return Scaffold(
    drawer: typeMenu == TypeMenu.DRAWER ? webStructController.drawer : null,
    body: [
      typeMenu == TypeMenu.HEADER
          ? (webStructController.header ?? const SizedBox())
          : const SizedBox(),
      typePage == TypePage.SCROLLVIEW
          ? SingleChildScrollView(
              child: [
                largeContent(context),
                webStructController.footer ?? const SizedBox()
              ].listToColumn(),
            ).withExpanded()
          : [
              largeContent(context).withFlexible(),
              webStructController.footer ?? const SizedBox()
            ].listToColumn().withExpanded(),
    ].listToColumn(),
  );
}