karvulf / flutter-reorderable-grid-view

BSD 3-Clause "New" or "Revised" License
143 stars 20 forks source link

Can't drag/drop in flutter web #115

Closed loic-hamdi closed 2 weeks ago

loic-hamdi commented 2 weeks ago

Using the example I cannot drag/drop the GridView children on flutter web.

The children switch animation works when I trigger manually with

setState(() {
  final child = children.removeAt(0);
  children.insert(1, child);
});

Any idea what could cause this behavior?

karvulf commented 2 weeks ago

Hi @loic-hamdi it seems like you solved the issue. If anything wasn't clear, please let me know it.