SeniorBackdrop constructor

const SeniorBackdrop({
  1. Key? key,
  2. List<Widget>? actions,
  3. SeniorBackdropTabBarInfo? backdropTabBarInfo,
  4. required Widget body,
  5. bool? centerTitle,
  6. bool hasTopPadding = true,
  7. bool hideLeading = false,
  8. double? leadingWidth = 56,
  9. Widget? leading,
  10. RefreshCallback? onRefresh,
  11. dynamic onTapBack()?,
  12. SystemUiOverlayStyle? systemOverlayStyle,
  13. SeniorBackdropStyle? style,
  14. required Widget title,
})

Creates the SDS Backdrop component.

The body and title parameters are required.

Implementation

const SeniorBackdrop({
  Key? key,
  this.actions,
  this.backdropTabBarInfo,
  required this.body,
  this.centerTitle,
  this.hasTopPadding = true,
  this.hideLeading = false,
  this.leadingWidth = 56,
  this.leading,
  this.onRefresh,
  this.onTapBack,
  this.systemOverlayStyle,
  this.style,
  required this.title,
}) : super(key: key);