ParallaxFlowDelegate constructor

ParallaxFlowDelegate({
  1. required ScrollableState scrollable,
  2. required BuildContext listItemContext,
  3. required GlobalKey<State<StatefulWidget>> backgroundImageKey,
  4. double parallaxIntensity = 0.25,
  5. double fadeIntensity = 0,
  6. Axis axis = Axis.horizontal,
})

Implementation

ParallaxFlowDelegate({
  required this.scrollable,
  required this.listItemContext,
  required this.backgroundImageKey,
  this.parallaxIntensity = 0.25,
  this.fadeIntensity = 0,
  this.axis = Axis.horizontal,
}) : super(repaint: scrollable.position);