From 10a50bcc7a386eb7fead56ff67cdfa266db80c92 Mon Sep 17 00:00:00 2001 From: Michael Goderbauer Date: Thu, 22 Feb 2024 18:28:05 -0800 Subject: [PATCH] Remove deprecated AnimatedListItemBuilder, AnimatedListRemovedItemBuilder (#143974) https://github.com/flutter/flutter/issues/143956 --- .../lib/src/widgets/animated_scroll_view.dart | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/packages/flutter/lib/src/widgets/animated_scroll_view.dart b/packages/flutter/lib/src/widgets/animated_scroll_view.dart index 856383131583..7a1217feab99 100644 --- a/packages/flutter/lib/src/widgets/animated_scroll_view.dart +++ b/packages/flutter/lib/src/widgets/animated_scroll_view.dart @@ -635,15 +635,6 @@ abstract class _AnimatedScrollViewState extends S } } -/// Signature for the builder callback used by [AnimatedList]. -/// -/// This is deprecated, use the identical [AnimatedItemBuilder] instead. -@Deprecated( - 'Use AnimatedItemBuilder instead. ' - 'This feature was deprecated after v3.5.0-4.0.pre.', -) -typedef AnimatedListItemBuilder = Widget Function(BuildContext context, int index, Animation animation); - /// Signature for the builder callback used by [AnimatedList] & [AnimatedGrid] to /// build their animated children. /// @@ -658,16 +649,6 @@ typedef AnimatedListItemBuilder = Widget Function(BuildContext context, int inde /// animations instead of adding them. typedef AnimatedItemBuilder = Widget Function(BuildContext context, int index, Animation animation); -/// Signature for the builder callback used by [AnimatedListState.removeItem]. -/// -/// This is deprecated, use the identical [AnimatedRemovedItemBuilder] -/// instead. -@Deprecated( - 'Use AnimatedRemovedItemBuilder instead. ' - 'This feature was deprecated after v3.5.0-4.0.pre.', -) -typedef AnimatedListRemovedItemBuilder = Widget Function(BuildContext context, Animation animation); - /// Signature for the builder callback used in [AnimatedListState.removeItem] and /// [AnimatedGridState.removeItem] to animate their children after they have /// been removed.