AtomicSimpleAppBar constructor

const AtomicSimpleAppBar({
  1. Key? key,
  2. required String title,
  3. List<Widget>? actions,
  4. bool showBackButton = true,
  5. bool? centerTitle,
  6. Color? backgroundColor,
  7. AtomicAppBarVariant variant = AtomicAppBarVariant.standard,
})

Implementation

const AtomicSimpleAppBar({
  super.key,
  required this.title,
  this.actions,
  this.showBackButton = true,
  this.centerTitle,
  this.backgroundColor,
  this.variant = AtomicAppBarVariant.standard,
});