CustomScaffold constructor

const CustomScaffold({
  1. Key? key,
  2. required Widget body(
    1. CustomColorSet colors
    ),
  3. PreferredSizeWidget? appBar(
    1. CustomColorSet colors
    )?,
  4. Widget? floatingButton(
    1. CustomColorSet colors
    )?,
  5. bool resizeToAvoidBottomInset = false,
  6. FloatingActionButtonLocation? floatingButtonLocation,
  7. Color? bgColor,
  8. Widget? bottomNavigationBar(
    1. CustomColorSet colors
    )?,
  9. bool bgImage = false,
  10. Widget? drawer(
    1. CustomColorSet colors
    )?,
  11. bool extendBodyBehindAppBar = false,
  12. bool extendBody = false,
  13. GlobalKey<ScaffoldState>? scaffoldKey,
})

Implementation

const CustomScaffold({
  super.key,
  required this.body,
  this.appBar,
  this.floatingButton,
  this.resizeToAvoidBottomInset = false,
  this.floatingButtonLocation,
  this.bgColor,
  this.bottomNavigationBar,
  this.bgImage = false,
  this.drawer,
  this.extendBodyBehindAppBar = false,
  this.extendBody = false, this.scaffoldKey,
});