GNCustomScaffold constructor

const GNCustomScaffold({
  1. Key? key,
  2. required Widget body,
  3. bool? resizeToAvoidBottomInset,
  4. Widget? bottomNavigationBar,
  5. String? appBarTitle,
  6. EdgeInsetsGeometry? padding,
  7. List<Widget>? actionsWidget,
  8. Widget? titleWidget,
  9. Widget? endDrawer,
  10. Color? backgroundColor,
  11. bool? showBackIcon,
  12. bool? isSafeArea = true,
  13. Color? backIconColor,
  14. Widget? drawer,
  15. double? fontsize,
  16. Color? fontcolor,
  17. Color? appBarBgcolor,
  18. TextAlign? align,
  19. PreferredSizeWidget? bottomWidget,
  20. Widget? leadingWidget,
  21. Color? shadowColor,
  22. double? elevation,
  23. Widget? floatingActionButton,
})

Implementation

const GNCustomScaffold({
  super.key,
  required this.body,
  this.resizeToAvoidBottomInset,
  this.bottomNavigationBar,
  this.appBarTitle,
  this.padding,
  this.actionsWidget,
  this.titleWidget,
  this.endDrawer,
  this.backgroundColor,
  this.showBackIcon,
  this.isSafeArea = true,
  this.backIconColor,
  this.drawer,
  this.fontsize,
  this.fontcolor,
  this.appBarBgcolor,
  this.align,
  this.bottomWidget,
  this.leadingWidget,
  this.shadowColor,
  this.elevation,
  this.floatingActionButton,
});