AnimatedGridViewBuilder constructor
const
AnimatedGridViewBuilder({
- Key? key,
- required int itemCount,
- required IndexedWidgetBuilder itemBuilder,
- ScrollWidgetAnimationType animationType = ScrollWidgetAnimationType.fadeOut,
- Duration? animationDuration = const Duration(milliseconds: 500),
- double itemDelay = 0.1,
- double? bounceAmplitude,
- Color? colorChangeHighlightColor,
- int? delay,
- SliverGridDelegate? gridDelegate,
- SliverChildDelegate? childrenDelegate,
- Axis? scrollDirection,
- ScrollController? controller,
- bool? reverse,
- bool? primary,
- bool? shrinkWrap,
- ScrollPhysics? physics,
- EdgeInsetsGeometry? padding,
Padding for the grid view.
Implementation
const AnimatedGridViewBuilder({
super.key,
required this.itemCount,
required this.itemBuilder,
this.animationType = ScrollWidgetAnimationType.fadeOut,
this.animationDuration = const Duration(milliseconds: 500),
this.itemDelay = 0.1,
this.bounceAmplitude,
this.colorChangeHighlightColor,
this.delay,
this.gridDelegate,
this.childrenDelegate,
this.scrollDirection,
this.controller,
this.reverse,
this.primary,
this.shrinkWrap,
this.physics,
this.padding,
});