ArcaneScreen constructor

const ArcaneScreen({
  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. ScrollController? scrollController,
  14. ScrollController? sidebarController,
  15. ScrollPhysics? physics,
  16. required Widget child,
})

Implementation

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