HeaderBodyScrollLayout constructor

const HeaderBodyScrollLayout({
  1. Key? key,
  2. required Widget header,
  3. required Widget body,
  4. Widget? shrinkHeader,
  5. ScrollController? scrollController,
  6. double expandedHeight = 200,
  7. double? minHeight,
})

Implementation

const HeaderBodyScrollLayout({
  super.key,
  required this.header,
  required this.body,
  this.shrinkHeader,
  this.scrollController,
  this.expandedHeight = 200,
  this.minHeight,
});