CoderBar constructor

const CoderBar({
  1. Key? key,
  2. String? title,
  3. Widget? titleWidget,
  4. Widget? leading,
  5. bool isBack = false,
  6. Color? backgroundColor,
  7. Color? iconColor,
  8. Color? textColor,
  9. double? elevation,
  10. double? height,
  11. bool centerTitle = false,
  12. bool forceMaterialTransparency = false,
  13. bool automaticallyImplyLeading = false,
  14. List<Widget>? actions,
  15. VoidCallback? onBack,
  16. PreferredSizeWidget? bottom,
})

Creates a flexible, themed app bar.

Implementation

const CoderBar({
  super.key,
  this.title,
  this.titleWidget,
  this.leading,
  this.isBack = false,
  this.backgroundColor,
  this.iconColor,
  this.textColor,
  this.elevation,
  this.height,
  this.centerTitle = false,
  this.forceMaterialTransparency = false,
  this.automaticallyImplyLeading = false,
  this.actions,
  this.onBack,
  this.bottom,
});