ArcaneFillScreen constructor

const ArcaneFillScreen({
  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? background,
  10. double? loadingProgress,
  11. bool loadingIndeterminate = false,
  12. void onBack()?,
  13. bool scrollable = true,
  14. Key? key,
})

Implementation

const ArcaneFillScreen({
  required this.child,
  this.header,
  this.title,
  this.subtitle,
  this.actions,
  this.footer,
  this.sidebar,
  this.sidebarRight = false,
  this.background,
  this.loadingProgress,
  this.loadingIndeterminate = false,
  this.onBack,
  this.scrollable = true,
  super.key,
});