AppBarConfig constructor

const AppBarConfig({
  1. String? title,
  2. TextStyle? titleStyle,
  3. Color? backgroundColor,
  4. double? elevation = 0,
  5. Widget? customBackIcon,
  6. bool centerTitle = true,
  7. bool automaticallyImplyLeading = true,
  8. bool showBackButton = true,
})

Creates an app bar configuration.

Implementation

const AppBarConfig({
  this.title,
  this.titleStyle,
  this.backgroundColor,
  this.elevation = 0,
  this.customBackIcon,
  this.centerTitle = true,
  this.automaticallyImplyLeading = true,
  this.showBackButton = true,
});