FCCCollapsingAppBar constructor

const FCCCollapsingAppBar({
  1. Key? key,
  2. required FCCAppBar appBar,
  3. double expandedHeight = 180,
  4. bool pinned = true,
  5. bool floating = false,
  6. bool snap = false,
  7. Widget? flexibleBackground,
})

Implementation

const FCCCollapsingAppBar({
  super.key,
  required this.appBar,
  this.expandedHeight = 180,
  this.pinned = true,
  this.floating = false,
  this.snap = false,
  this.flexibleBackground,
});