FillScreen constructor

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

Implementation

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