ArnaSliverHeaderBar constructor

const ArnaSliverHeaderBar({
  1. Key? key,
  2. Widget? leading,
  3. bool automaticallyImplyLeading = true,
  4. Widget? middle,
  5. List<Widget>? actions,
  6. Border? border,
  7. Color? backgroundColor,
})

Creates a header bar for scrolling lists.

Implementation

const ArnaSliverHeaderBar({
  super.key,
  this.leading,
  this.automaticallyImplyLeading = true,
  this.middle,
  this.actions,
  this.border,
  this.backgroundColor,
});