Mindinventory / flutter_draggable_gridview

This package supports drag & drop widgets inside the GridView.builder for multiplatform. It provides all the properties which are available in Gridview. builder and easy to implement with the few lines of code.

Home Page:https://www.mindinventory.com/flutter-app-development.php

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

There is a bug in darg_target_grid.dart

buptwsg opened this issue · comments

version: 0.0.4

file drag_target_grid.dart, line 84:
DraggableGridItem(child: EmptyItem(), isDraggable: true);

should be :

DraggableGridItem(child: widget.placeHolder ?? EmptyItem(), isDraggable: true);

Could you please fix this ASAP and release a new version 0.0.5? Otherwise I have to use source code to integrate into my project. Thanks a lot!

This is fixed now