AppBarConnection constructor

const AppBarConnection({
  1. Key? key,
  2. required List<AppBar> appBars,
  3. required Widget child,
  4. AppbarPropagation propagation = AppbarPropagation.next,
  5. NestedScrollConnectionPropagation nestedPropagation = NestedScrollConnectionPropagation.directional,
  6. AppBarController? controller,
  7. NestedScrollController? scrollController,
  8. bool? fixedScrollableHeight,
})

Implementation

const AppBarConnection({
  super.key,
  required this.appBars,
  required this.child,
  this.propagation = AppbarPropagation.next,
  this.nestedPropagation = NestedScrollConnectionPropagation.directional,
  this.controller,
  this.scrollController,
  this.fixedScrollableHeight,
});