ModulaAppBar constructor

const ModulaAppBar({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. List<Widget>? actions,
  5. bool centerTitle = true,
  6. double elevation = 4,
  7. Color? backgroundColor,
  8. double borderRadius = 0,
  9. Gradient? backgroundGradient,
  10. EdgeInsetsGeometry? padding,
})

Implementation

const ModulaAppBar({
  super.key,
  this.leading,
  this.title,
  this.actions,
  this.centerTitle = true,
  this.elevation = 4,
  this.backgroundColor,
  this.borderRadius = 0,
  this.backgroundGradient,
  this.padding,
});