CodeNestAppBar constructor

const CodeNestAppBar({
  1. Key? key,
  2. required String title,
  3. Widget? leading,
  4. List<Widget>? actions,
  5. bool centerTitle = true,
  6. Color? backgroundColor,
  7. double elevation = 0.0,
  8. TextStyle? titleTextStyle,
  9. PreferredSizeWidget? bottom,
})

Implementation

const CodeNestAppBar({
  super.key,
  required this.title,
  this.leading,
  this.actions,
  this.centerTitle = true,
  this.backgroundColor,
  this.elevation = 0.0,
  this.titleTextStyle,
  this.bottom,
});