AbstractStatelessScreen constructor

const AbstractStatelessScreen({
  1. Key? key,
  2. Color? overrideBackgroundColor,
  3. Widget? fab,
  4. Widget? foreground,
  5. Widget? background,
  6. bool? gutter,
  7. Widget? header,
  8. Widget? footer,
  9. double? loadingProgress,
  10. bool loadingProgressIndeterminate = false,
  11. bool showLoadingSparks = false,
})

Implementation

const AbstractStatelessScreen({
  super.key,
  this.overrideBackgroundColor,
  this.fab,
  this.foreground,
  this.background,
  this.gutter,
  this.header,
  this.footer,
  this.loadingProgress,
  this.loadingProgressIndeterminate = false,
  this.showLoadingSparks = false,
});