SafaehContentAlignedAppBar constructor

const SafaehContentAlignedAppBar({
  1. Key? key,
  2. required double leftOffset,
  3. required double bandWidth,
  4. Widget? leading,
  5. double? leadingWidth,
  6. required Widget title,
  7. List<Widget>? actions,
  8. bool centerTitle = true,
})

Implementation

const SafaehContentAlignedAppBar({
  super.key,
  required this.leftOffset,
  required this.bandWidth,
  this.leading,
  this.leadingWidth,
  required this.title,
  this.actions,
  this.centerTitle = true,
});