draggableFeedbackBuilder property
the dragging moving view builder, typically return a widget wrap by Material
Implementation
Widget Function(Widget child) draggableFeedbackBuilder = (Widget child) {
return Material(
elevation: 18.0,
child: child,
color: Colors.transparent,
shadowColor: Colors.transparent,
borderRadius: BorderRadius.zero,
);
};