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,
})

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,
});