easy_drag_and_drop 0.0.3 easy_drag_and_drop: ^0.0.3 copied to clipboard
Package make easier drag and drop for list of widgets
Overview #
The package make easier drag and drop of widgets list puted in stack
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(),
],
),
),
);
}