AnimatedListItemBuilder typedef

  1. @Deprecated('Use AnimatedItemBuilder instead. ' 'This feature was deprecated after v3.5.0-4.0.pre.')
AnimatedListItemBuilder = Widget Function(BuildContext context, int index, Animation<double> animation)

Signature for the builder callback used by AnimatedList.

This is deprecated, use the identical AnimatedItemBuilder instead.

Implementation

@Deprecated(
  'Use AnimatedItemBuilder instead. '
  'This feature was deprecated after v3.5.0-4.0.pre.',
)
typedef AnimatedListItemBuilder = Widget Function(BuildContext context, int index, Animation<double> animation);