Overview
The package make easier drag and drop stack of widgets
Usage
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: EasyDragAndDrop(
initialPositions: [
Offset(-100, 0),
Offset(0, -100),
],
width: 300,
height: 300,
items: [
FlutterLogo(),
FlutterLogo(),
],
),
),
);
}