CustomAppBar constructor

const CustomAppBar({
  1. Key? key,
  2. bool allowBack = true,
  3. bool centerTitle = true,
  4. List<Widget>? actions,
  5. PreferredSizeWidget? bottom,
  6. double elevation = 1,
  7. required String title,
})

Implementation

const CustomAppBar({
  super.key,
  this.allowBack = true,
  this.centerTitle = true,
  this.actions,
  this.bottom,
  this.elevation = 1,
  required this.title,
});