CustomScaffold constructor

const CustomScaffold({
  1. Key? key,
  2. required Widget body,
  3. Widget? drawer,
  4. Widget? bottomSheet,
  5. Widget? bottomNavigationBar,
  6. PreferredSizeWidget? appBar,
  7. Color? backgroundColor,
  8. FloatingActionButton? floatingActionButton,
  9. FloatingActionButtonLocation? floatingActionButtonLocation,
  10. Color? foregroundColor,
  11. bool? primary,
  12. bool? extendBody,
  13. bool? resizeToAvoidBottomInset,
})

Implementation

const CustomScaffold({
  super.key,
  required this.body,
  this.drawer,
  this.bottomSheet,
  this.bottomNavigationBar,
  this.appBar,
  this.backgroundColor,
  this.floatingActionButton,
  this.floatingActionButtonLocation,
  this.foregroundColor,
  this.primary,
  this.extendBody,
  this.resizeToAvoidBottomInset,
});