SeniorColorfulHeaderStructure constructor

SeniorColorfulHeaderStructure({
  1. Key? key,
  2. List<Widget>? actions,
  3. required Widget body,
  4. NotificationMessage? notification,
  5. bool hasTopPadding = true,
  6. bool hideLeading = false,
  7. Widget? leading,
  8. SeniorColorfulHeaderStructureStyle? style,
  9. required Widget title,
  10. TabBarConfig? tabBarConfig,
  11. ScrollController? scrollController,
})

Create a view structure component with header (app bar) and body according to the design system. The body and title parameters are required.

Implementation

SeniorColorfulHeaderStructure({
  Key? key,
  this.actions,
  required this.body,
  this.notification,
  this.hasTopPadding = true,
  this.hideLeading = false,
  this.leading,
  this.style,
  required this.title,
  this.tabBarConfig,
  this.scrollController,
}) : super(
        key: key,
      );