FillScreen constructor

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

Implementation

const FillScreen({
  super.key,
  super.background,
  super.fab,
  super.footer,
  super.header,
  super.gutter,
  super.loadingProgress,
  super.loadingProgressIndeterminate,
  super.minContentFraction,
  super.minContentWidth,
  super.showLoadingSparks,
  super.foreground,
  required this.child,
});