SliverResizingHeader constructor

const SliverResizingHeader({
  1. Key? key,
  2. Widget? minExtentPrototype,
  3. Widget? maxExtentPrototype,
  4. Widget? child,
})

Create a pinned header sliver that reacts to scrolling by resizing between the intrinsic sizes of the min and max extent prototypes.

Implementation

const SliverResizingHeader({
  super.key,
  this.minExtentPrototype,
  this.maxExtentPrototype,
  this.child,
});