buildInserting method
- BuildContext context,
- Widget widget,
- Animation<
double> animation
override
Wraps the widget
in an animated widget for inserting new items.
Implementation
@override
Widget buildInserting(final BuildContext context, final Widget widget,
final Animation<double> animation) {
return FadeTransition(child: widget, opacity: animation);
}