AppSimpleAppBar constructor

const AppSimpleAppBar({
  1. Key? key,
  2. required String title,
  3. TextStyle? titleStyle,
  4. Widget? leading,
  5. List<Widget>? actions,
  6. bool? centerTitle,
  7. double? elevation,
  8. Color? backgroundColor,
})

Implementation

const AppSimpleAppBar({
  super.key,
  required this.title,
  this.titleStyle,
  this.leading,
  this.actions,
  this.centerTitle,
  this.elevation,
  this.backgroundColor,
});