Scaffold constructor

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

Implementation

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