CLPageHeader constructor

const CLPageHeader({
  1. Key? key,
  2. String? title,
  3. Widget? titleWidget,
  4. String? subtitle,
  5. Widget? subtitleWidget,
  6. dynamic icon,
  7. Widget? leading,
  8. Widget? trailing,
  9. Widget? actions,
  10. List<PageAction>? pageActions,
  11. Color? color,
  12. ScrollController? scrollController,
  13. bool showOnDesktop = true,
  14. bool animate = false,
})

Implementation

const CLPageHeader({
  super.key,
  this.title,
  this.titleWidget,
  this.subtitle,
  this.subtitleWidget,
  this.icon,
  this.leading,
  this.trailing,
  this.actions,
  this.pageActions,
  this.color,
  this.scrollController,
  this.showOnDesktop = true,
  this.animate = false,
});