CustomAppBar constructor

const CustomAppBar({
  1. Key? key,
  2. String title = '',
  3. Widget? titleWidget,
  4. String? subtitle,
  5. bool centerTitle = false,
  6. bool iconSwipe = false,
  7. List leftButtons = const [],
  8. List rightButtons = const [],
  9. Color? backgroundColor,
  10. Color? textColor,
  11. TextStyle? titleStyle,
  12. TextStyle? subtitleStyle,
  13. TabBar? bottom,
})

Implementation

const CustomAppBar({
  Key? key,
  this.title = '',
  this.titleWidget,
  this.subtitle,
  this.centerTitle = false,
  this.iconSwipe = false,
  this.leftButtons = const [],
  this.rightButtons = const [],
  this.backgroundColor,
  this.textColor,
  this.titleStyle,
  this.subtitleStyle,
  this.bottom
}) : super(key: key);