Skip to content

Commit

Permalink
Remove deprecated AnimatedListItemBuilder, AnimatedListRemovedItemBui…
Browse files Browse the repository at this point in the history
…lder (#143974)

flutter/flutter#143956
  • Loading branch information
goderbauer authored Feb 23, 2024
1 parent ce100cd commit 10a50bc
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions packages/flutter/lib/src/widgets/animated_scroll_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -635,15 +635,6 @@ abstract class _AnimatedScrollViewState<T extends _AnimatedScrollView> 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<double> animation);

/// Signature for the builder callback used by [AnimatedList] & [AnimatedGrid] to
/// build their animated children.
///
Expand All @@ -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<double> 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<double> animation);

/// Signature for the builder callback used in [AnimatedListState.removeItem] and
/// [AnimatedGridState.removeItem] to animate their children after they have
/// been removed.
Expand Down

0 comments on commit 10a50bc

Please sign in to comment.