ArcaneScreen constructor

const ArcaneScreen({
  1. required Component child,
  2. Component? header,
  3. String? title,
  4. String? subtitle,
  5. List<Component>? actions,
  6. Component? footer,
  7. Component? sidebar,
  8. bool sidebarRight = false,
  9. Component? fab,
  10. Component? background,
  11. Component? foreground,
  12. double? loadingProgress,
  13. bool loadingIndeterminate = false,
  14. EdgeInsets? padding,
  15. void onBack()?,
  16. Key? key,
})

Implementation

const ArcaneScreen({
  required this.child,
  this.header,
  this.title,
  this.subtitle,
  this.actions,
  this.footer,
  this.sidebar,
  this.sidebarRight = false,
  this.fab,
  this.background,
  this.foreground,
  this.loadingProgress,
  this.loadingIndeterminate = false,
  this.padding,
  this.onBack,
  super.key,
});