Scaffold constructor

const Scaffold({
  1. Key? key,
  2. required Widget child,
  3. bool primary = true,
  4. List<Widget> headers = const [],
  5. List<Widget> footers = const [],
  6. double? loadingProgress,
  7. bool loadingProgressIndeterminate = false,
  8. bool floatingHeader = false,
  9. bool floatingFooter = false,
  10. Color? backgroundColor,
  11. Color? headerBackgroundColor,
  12. Color? footerBackgroundColor,
  13. bool showLoadingSparks = false,
  14. Color? overrideBackgroundColor,
})

Implementation

const Scaffold({
  super.key,
  required this.child,
  this.primary = true,
  this.headers = const [],
  this.footers = const [],
  this.loadingProgress,
  this.loadingProgressIndeterminate = false,
  this.floatingHeader = false,
  this.floatingFooter = false,
  this.backgroundColor,
  this.headerBackgroundColor,
  this.footerBackgroundColor,
  this.showLoadingSparks = false,
  this.overrideBackgroundColor,
});