decorateDraggable function
Implementation
Widget decorateDraggable(BuildContext context, Widget child, Border border) {
return Container(
decoration: BoxDecoration(
border: border,
),
child: Theme(
data: Theme.of(context).copyWith(dividerColor: Colors.transparent),
child: child,
),
);
}