AbstractStatefulScreen constructor

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

Implementation

const AbstractStatefulScreen({
  super.key,
  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,
});