MinAppBar constructor

const MinAppBar({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. Widget? trailing,
  5. MinAppBarSize size = MinAppBarSize.md,
  6. bool elevation = false,
  7. bool centerTitle = false,
  8. Color? backgroundColor,
  9. Color? borderColor,
  10. Color? surfaceTintColor,
  11. double? height,
  12. bool includeSystemPadding = true,
})

Implementation

const MinAppBar({
  super.key,
  this.leading,
  this.title,
  this.trailing,
  this.size = MinAppBarSize.md,
  this.elevation = false,
  this.centerTitle = false,
  this.backgroundColor,
  this.borderColor,
  this.surfaceTintColor,
  this.height,
  this.includeSystemPadding = true,
});