FastAppBarLayout constructor

const FastAppBarLayout({
  1. Key? key,
  2. required ScrollController scrollController,
  3. double expandedHeight = kFastExpandedHeight,
  4. String? subtitleText,
  5. String? titleText,
  6. Widget? leading,
  7. List<Widget>? actions,
  8. Widget? decoration,
  9. Color? backgroundColor,
  10. LinearGradient? backgroundLinearGradient,
})

Implementation

const FastAppBarLayout({
  super.key,
  required this.scrollController,
  this.expandedHeight = kFastExpandedHeight,
  this.subtitleText,
  this.titleText,
  this.leading,
  this.actions,
  this.decoration,
  this.backgroundColor,
  this.backgroundLinearGradient,
});