FixedExtentScrollController constructor

FixedExtentScrollController({
  1. int initialItem = 0,
  2. bool keepScrollOffset = true,
  3. String? debugLabel,
  4. ScrollControllerCallback? onAttach,
  5. ScrollControllerCallback? onDetach,
})

Creates a scroll controller for scrollables whose items have the same size.

initialItem defaults to zero.

Implementation

FixedExtentScrollController({
  this.initialItem = 0,
  super.keepScrollOffset,
  super.debugLabel,
  super.onAttach,
  super.onDetach,
});