StreamThreadHeader constructor

const StreamThreadHeader({
  1. Key? key,
  2. required Message parent,
  3. bool showBackButton = true,
  4. VoidCallback? onBackPressed,
  5. Widget? title,
  6. Widget? subtitle,
  7. bool? centerTitle,
  8. Widget? leading,
  9. List<Widget>? actions,
  10. VoidCallback? onTitleTap,
  11. bool showTypingIndicator = true,
  12. Color? backgroundColor,
  13. double elevation = 1,
})

Instantiate a new ThreadHeader

Implementation

const StreamThreadHeader({
  super.key,
  required this.parent,
  this.showBackButton = true,
  this.onBackPressed,
  this.title,
  this.subtitle,
  this.centerTitle,
  this.leading,
  this.actions,
  this.onTitleTap,
  this.showTypingIndicator = true,
  this.backgroundColor,
  this.elevation = 1,
}) : preferredSize = const Size.fromHeight(kToolbarHeight);