AbstractStatelessScreen constructor

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

Implementation

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