0 purchases
easy drag and drop
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(),
],
),
),
);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.