ScaffoldWidget constructor

const ScaffoldWidget({
  1. Key? key,
  2. required Widget body,
  3. required List<ScaffoldWidgetItemMenu> lstMenutop,
  4. required List<ScaffoldWidgetItemMenu> lstMenuBottom,
  5. Widget? logoMenuSmall,
  6. Widget? logoMenuMedium,
  7. Widget? logoMenuLarge,
  8. Color? colorItemLight,
  9. Color? colorItemDark,
  10. dynamic onGoBack()?,
  11. bool? mostrarGoBack,
  12. Color? backgroundColor,
  13. bool mostrarAppBar = true,
})

Implementation

const ScaffoldWidget(
    {super.key,
    required this.body,
    required this.lstMenutop,
    required this.lstMenuBottom,
    this.logoMenuSmall,
    this.logoMenuMedium,
    this.logoMenuLarge,
    this.colorItemLight,
    this.colorItemDark,
    this.onGoBack,
    this.mostrarGoBack,
    this.backgroundColor,
    this.mostrarAppBar = true});