SliverScreen constructor

const SliverScreen({
  1. ScrollController? sidebarController,
  2. Color? overrideBackgroundColor,
  3. Key? key,
  4. Widget? background,
  5. Widget? fab,
  6. Widget? footer,
  7. Widget? header,
  8. bool gutter = true,
  9. double? loadingProgress,
  10. bool loadingProgressIndeterminate = false,
  11. double minContentFraction = 0.75,
  12. double minContentWidth = 500,
  13. bool showLoadingSparks = false,
  14. ScrollPhysics? physics,
  15. Widget? foreground,
  16. ScrollController? scrollController,
  17. PylonBuilder? sidebar,
  18. required Widget sliver,
})

Implementation

const SliverScreen({
  this.sidebarController,
  super.overrideBackgroundColor,
  super.key,
  super.background,
  super.fab,
  super.footer,
  super.header,
  super.gutter,
  super.loadingProgress,
  super.loadingProgressIndeterminate,
  super.minContentFraction,
  super.minContentWidth,
  super.showLoadingSparks,
  this.physics,
  super.foreground,
  this.scrollController,
  this.sidebar,
  required this.sliver,
});