largeScreen method

Scaffold largeScreen(
  1. BuildContext context
)

Implementation

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